コード例 #1
0
 public int CompareTo(ScheduledDelegate other) => ExecutionTime == other.ExecutionTime ? -1 : ExecutionTime.CompareTo(other.ExecutionTime);
コード例 #2
0
ファイル: GameEvent.cs プロジェクト: indij/KatanaMUD
 public int CompareTo(GameEvent other)
 {
     return(ExecutionTime.CompareTo(other.ExecutionTime));
 }