示例#1
0
 public LinkedDictionaryEnumerator(AbstractLinkedDictionary <TKey, TValue> parent, bool forward)
 {
     _parent  = parent;
     _forward = forward;
     _current = null;
     _updates = parent.Updates;
 }
示例#2
0
 public DictionaryValues(AbstractLinkedDictionary <TKey, TValue> parent, bool forward)
 {
     _parent  = parent;
     _forward = forward;
 }