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