Implemented interface member:
property
Current
System.Collections.Generic.IEnumerator<T>.Current
3 writes to Current
System.Collections (3)
System\Collections\Generic\OrderedDictionary.cs (3)
1436Current = new KeyValuePair<TKey, TValue>(entry.Key, entry.Value); 1441Current = default; 1454Current = default;
9 references to Current
System.Collections (9)
System\Collections\Generic\OrderedDictionary.cs (9)
1410new DictionaryEntry(Current.Key, Current.Value) : 1411Current; 1414readonly DictionaryEntry IDictionaryEnumerator.Entry => new(Current.Key, Current.Value); 1417readonly object IDictionaryEnumerator.Key => Current.Key; 1420readonly object? IDictionaryEnumerator.Value => Current.Value; 1640public TKey Current => _enumerator.Current.Key; 1884public TValue Current => _enumerator.Current.Value;