Esempio n. 1
0
 public List()
 {
     Start      = Current = new ListElement();
     this.Count = 0;
 }
Esempio n. 2
0
 public ListElement()
 {
     Data = null;
     Next = null;
 }