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