Implemented interface member:
property
Current
System.Collections.Generic.IEnumerator<T>.Current
3 writes to Current
System.Collections (3)
System\Collections\Generic\OrderedDictionary.cs (3)
1439Current = new KeyValuePair<TKey, TValue>(entry.Key, entry.Value); 1444Current = default; 1457Current = default;
9 references to Current
System.Collections (9)
System\Collections\Generic\OrderedDictionary.cs (9)
1413new DictionaryEntry(Current.Key, Current.Value) : 1414Current; 1417readonly DictionaryEntry IDictionaryEnumerator.Entry => new(Current.Key, Current.Value); 1420readonly object IDictionaryEnumerator.Key => Current.Key; 1423readonly object? IDictionaryEnumerator.Value => Current.Value; 1643public TKey Current => _enumerator.Current.Key; 1887public TValue Current => _enumerator.Current.Value;