コード例 #1
0
ファイル: MyDictionary.cs プロジェクト: yqxflong/DashFire
 internal Enumerator(MyDictionary <TKey, TValue> host)
 {
     host_enumerator = host.GetEnumerator();
 }
コード例 #2
0
ファイル: MyDictionary.cs プロジェクト: yqxflong/DashFire
 internal Enumerator(MyDictionary <TKey, TValue> dictionary)
     : this()
 {
     this.dictionary = dictionary;
     stamp           = dictionary.generation;
 }
コード例 #3
0
ファイル: MyDictionary.cs プロジェクト: yqxflong/DashFire
 public void Dispose()
 {
     dictionary = null;
 }
コード例 #4
0
ファイル: MyDictionary.cs プロジェクト: yqxflong/DashFire
 public ShimEnumerator(MyDictionary <TKey, TValue> host)
 {
     host_enumerator = host.GetEnumerator();
 }