Пример #1
0
 internal Entry(MultiDictionary <TKey, TValue> dictionary, TKey key)
 {
     mDictionary = dictionary;
     mKey        = key;
 }
Пример #2
0
 internal Enumerator(MultiDictionary <TKey, TValue> dict)
 {
     this.dict         = dict;
     this.enumerator   = dict.data.Keys.GetEnumerator();
     this.boxedCurrent = null;
 }