Ejemplo n.º 1
0
 internal Enumerator(MyDictionary <TKey, TValue> host)
 {
     host_enumerator = host.GetEnumerator();
 }
Ejemplo n.º 2
0
 internal Enumerator(MyDictionary <TKey, TValue> dictionary)
     : this()
 {
     this.dictionary = dictionary;
     stamp           = dictionary.generation;
 }
Ejemplo n.º 3
0
 public void Dispose()
 {
     dictionary = null;
 }
Ejemplo n.º 4
0
 public ShimEnumerator(MyDictionary <TKey, TValue> host)
 {
     host_enumerator = host.GetEnumerator();
 }