Ejemplo n.º 1
0
 internal ValueCollection(_Dictionary <TKey, TValue> dictionary)
 {
     this.dictionary = dictionary;
 }
Ejemplo n.º 2
0
 internal Enumerator(_Dictionary <TKey, TValue> dictionary)
 {
     this.en = dictionary.GetEnumerator();
 }
Ejemplo n.º 3
0
 internal Enumerator(_Dictionary <TKey, TValue> dictionary)
 {
     this.dictionary = dictionary;
     this.slot       = 0;
     this.current    = default(KeyValuePair <TKey, TValue>);
 }