Пример #1
0
 public void Reset()
 {
     current = first;
 }
Пример #2
0
 public StackEnumerator(StackNode <T> first)
 {
     this.first   = first;
     this.current = first;
 }