コード例 #1
0
 internal ValueCollection(_Dictionary <TKey, TValue> dictionary)
 {
     this.dictionary = dictionary;
 }
コード例 #2
0
 internal Enumerator(_Dictionary <TKey, TValue> dictionary)
 {
     this.en = dictionary.GetEnumerator();
 }
コード例 #3
0
 internal Enumerator(_Dictionary <TKey, TValue> dictionary)
 {
     this.dictionary = dictionary;
     this.slot       = 0;
     this.current    = default(KeyValuePair <TKey, TValue>);
 }