public int Add(object value)
 {
     BasicList.Node node  = this.head.Append(value);
     BasicList.Node node1 = node;
     this.head = node;
     return(node1.Length - 1);
 }
Example #2
0
 public void Trim()
 {
     this.head = this.head.Trim();
 }
Example #3
0
 public int Add(object value)
 {
     return (this.head = this.head.Append(value)).Length - 1;
 }
Example #4
0
 internal NodeEnumerator(BasicList.Node node)
 {
     this.position = -1;
     this.node = node;
 }
Example #5
0
 // Token: 0x060002DD RID: 733 RVA: 0x00003B8A File Offset: 0x00001D8A
 internal NodeEnumerator(BasicList.Node node)
 {
     this.position = -1;
     this.node     = node;
 }
Example #6
0
 public void Trim()
 {
     this.head = this.head.Trim();
 }
Example #7
0
 public int Add(object value)
 {
     return((this.head = this.head.Append(value)).Length - 1);
 }
 static BasicList()
 {
     BasicList.nil = new BasicList.Node(null, 0);
 }