1 write to _enumerator
System.Collections.Concurrent (1)
System\Collections\Concurrent\ConcurrentDictionary.cs (1)
2324internal DictionaryEnumerator(ConcurrentDictionary<TKey, TValue> dictionary) => _enumerator = dictionary.GetEnumerator();
6 references to _enumerator
System.Collections.Concurrent (6)
System\Collections\Concurrent\ConcurrentDictionary.cs (6)
2326public DictionaryEntry Entry => new DictionaryEntry(_enumerator.Current.Key, _enumerator.Current.Value); 2328public object Key => _enumerator.Current.Key; 2330public object? Value => _enumerator.Current.Value; 2334public bool MoveNext() => _enumerator.MoveNext(); 2336public void Reset() => _enumerator.Reset();