Beispiel #1
0
 public IntegerPtr(IntegerPtr ptr, int index)
 {
     this.chars = ptr.chars;
     this.index = index;
 }
Beispiel #2
0
//			public CharPtr(string str)
//			{
//				this.chars = (str + '\0').ToCharArray();
//				this.index = 0;
//			}

            public IntegerPtr(IntegerPtr ptr)
            {
                this.chars = ptr.chars;
                this.index = ptr.index;
            }