2 writes to _enumerator
System.Collections (2)
System\Collections\Generic\OrderedDictionary.cs (2)
1612internal Enumerator(OrderedDictionary<TKey, TValue> dictionary) => _enumerator = dictionary.GetEnumerator(); 1624void IEnumerator.Reset() => EnumerableHelpers.Reset(ref _enumerator);
2 references to _enumerator
System.Collections (2)
System\Collections\Generic\OrderedDictionary.cs (2)
1615public TKey Current => _enumerator.Current.Key; 1621public bool MoveNext() => _enumerator.MoveNext();