1 write to _enumerator
System.Collections.Concurrent (1)
System\Collections\Concurrent\ConcurrentDictionary.cs (1)
2299
internal DictionaryEnumerator(ConcurrentDictionary<TKey, TValue> dictionary) =>
_enumerator
= dictionary.GetEnumerator();
6 references to _enumerator
System.Collections.Concurrent (6)
System\Collections\Concurrent\ConcurrentDictionary.cs (6)
2301
public DictionaryEntry Entry => new DictionaryEntry(
_enumerator
.Current.Key,
_enumerator
.Current.Value);
2303
public object Key =>
_enumerator
.Current.Key;
2305
public object? Value =>
_enumerator
.Current.Value;
2309
public bool MoveNext() =>
_enumerator
.MoveNext();
2311
public void Reset() =>
_enumerator
.Reset();