Ejemplo n.º 1
0
 public void Reset()
 {
     current = first;
 }
Ejemplo n.º 2
0
 public StackEnumerator(StackNode <T> first)
 {
     this.first   = first;
     this.current = first;
 }