Exemplo n.º 1
0
 public ValueCollection(LinkedDictionary<TKey, TValue> dictionary)
 {
     if (dictionary == null)
     {
         throw new ArgumentNullException();
     }
     this.dictionary = dictionary;
 }
Exemplo n.º 2
0
 internal Enumerator(LinkedDictionary<TKey, TValue> dictionary)
 {
     this.dictionary = dictionary;
     this.version = dictionary.version;
     this.current = dictionary.header;
 }