Example #1
0
 public StackEnumerator(Stack <T> q)
 {
     q.CopyTo(Collection, 0);
     curIndex = -1;
     curElem  = default(T);
 }