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