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