Exemplo n.º 1
0
        public FLITPos(int iti, ITITPos itp)
        {
            this.iti = iti;
            this.itp = itp;

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