예제 #1
0
 // Methods
 internal DictionaryEnumerator(ChoConcurrentDictionary <TKey1, TValue1> dictionary)
 {
     _enumerator = dictionary.GetEnumerator();
 }
예제 #2
0
 // Methods
 public ConcurrentDictionaryEnumerator(ChoConcurrentDictionary <TKey, TValue> dictionary)
 {
     _state      = 0;
     _dictionary = dictionary;
 }