Implemented interface member:
property
Current
System.Collections.Generic.IEnumerator<T>.Current
3 writes to Current
System.Collections (3)
System\Collections\Generic\OrderedDictionary.cs (3)
1444
Current
= new KeyValuePair<TKey, TValue>(entry.Key, entry.Value);
1449
Current
= default;
1462
Current
= default;
9 references to Current
System.Collections (9)
System\Collections\Generic\OrderedDictionary.cs (9)
1418
new DictionaryEntry(
Current
.Key,
Current
.Value) :
1419
Current
;
1422
readonly DictionaryEntry IDictionaryEnumerator.Entry => new(
Current
.Key,
Current
.Value);
1425
readonly object IDictionaryEnumerator.Key =>
Current
.Key;
1428
readonly object? IDictionaryEnumerator.Value =>
Current
.Value;
1648
public TKey Current => _enumerator.
Current
.Key;
1892
public TValue Current => _enumerator.
Current
.Value;