public GTGTPos1(int i, int j, GTGTPos next) { this.gfai = i; this.gti = j; this.next = next; this.hashCode = ToStringN().GetHashCode(); }
public static string makeStringN(int i, int j, GTGTPos next) { return(i.ToString() + "," + j.ToString() + ((next is GTGTPosEmpty) ? "" : "." + next.ToStringN())); }
public GLGTPos(int i, GTGTPos gtp) { this.gti = i; this.gtp = gtp; }