public FLITPos(int iti, ITITPos itp) { this.iti = iti; this.itp = itp; /*#if DEBUG * if (itp.depth >= 3) * Debugger.Break(); #endif*/ }
public FTITPos1(int iti, ITITPos next) { this.iti = iti; this.next = next; this.hashCode = ToStringN().GetHashCode(); }
public static string makeStringN(int iti, ITITPos next) { return(iti.ToString() + ((next is GTGTPosEmpty) ? "" : "." + next.ToStringN())); }