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