Example #1
0
 public void Dispose()
 {
     dictionary = null;
 }
Example #2
0
 internal Enumerator(ExistTable <T> dictionary)
 {
     this.dictionary = dictionary;
     this.index      = 0;
     this.current    = default(T);
 }