Exemplo n.º 1
0
 internal void Invalidate() {
     _list = null;
     _next = null;
     _prev = null;
 }
Exemplo n.º 2
0
 internal HashedLinkedListNode(HashedLinkedList<T> list, T value) {
     _list = list;
     _value = value;
 }