Exemplo n.º 1
0
 public void Reset()
 {
     current = head;
 }
Exemplo n.º 2
0
 public QueueEnumerator(QueueNode <T> head)
 {
     this.head    = head;
     this.current = head;
 }