コード例 #1
0
ファイル: Program.cs プロジェクト: nguyendoanhien/School-AI
 public static void ReadRelativeVertical(int index, List <string> set)
 {
     Vertical z = verticalCollections.Single(n => n.VerticalIndex == index);
 }
コード例 #2
0
ファイル: Program.cs プロジェクト: nguyendoanhien/School-AI
 static int CompareDegree(Vertical a, Vertical b)
 {
     return(b.Degree.CompareTo(a.Degree));
 }
コード例 #3
0
ファイル: Vertical.cs プロジェクト: nguyendoanhien/School-AI
 public Vertical(Vertical another)
 {
     this.verticalIndex     = another.verticalIndex;
     this.relativeVerticals = another.relativeVerticals;
     this.degree            = another.degree;
 }