コード例 #1
0
ファイル: Flights.cs プロジェクト: vtozija/bazi
 private bool apendable(Flight f2)
 {
     if (this.parent == null || (this.end().CompareTo(f2.end()) < 0 && this.to == f2.from)) return true;
     return false;
 }