示例#1
0
 public static void ReadRelativeVertical(int index, List <string> set)
 {
     Vertical z = verticalCollections.Single(n => n.VerticalIndex == index);
 }
示例#2
0
 static int CompareDegree(Vertical a, Vertical b)
 {
     return(b.Degree.CompareTo(a.Degree));
 }
示例#3
0
 public Vertical(Vertical another)
 {
     this.verticalIndex     = another.verticalIndex;
     this.relativeVerticals = another.relativeVerticals;
     this.degree            = another.degree;
 }