Beispiel #1
0
 public ValueCollection(ExposedDictionary <TKey, TValue> dictionary)
 {
     if (dictionary == null)
     {
         throw new ArgumentNullException("dictionary");
     }
     this.dictionary = dictionary;
 }
Beispiel #2
0
 internal Enumerator(ExposedDictionary <TKey, TValue> dictionary)
     : this()
 {
     this.dictionary = dictionary;
     stamp           = dictionary.generation;
 }
Beispiel #3
0
 public ShimEnumerator(ExposedDictionary <TKey, TValue> host)
 {
     host_enumerator = host.GetEnumerator();
 }
Beispiel #4
0
 internal Enumerator(ExposedDictionary <TKey, TValue> host)
 {
     host_enumerator = host.GetEnumerator();
 }
Beispiel #5
0
 public void Dispose()
 {
     dictionary = null;
 }