Ejemplo n.º 1
0
 public void Dispose()
 {
     _linkedList  = null;
     _currentNode = null;
 }
Ejemplo n.º 2
0
 public Enumerator(DoubleLinkedList <T> nlinkedList)
 {
     _linkedList  = nlinkedList;
     _currentNode = _linkedList.GetFirstListNode();
 }