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