2 instantiations of Enumerator
System.Collections (2)
System\Collections\Generic\OrderedDictionary.cs (2)
1153
public Enumerator GetEnumerator() =>
new
(this, useDictionaryEntry: false);
1164
IDictionaryEnumerator IDictionary.GetEnumerator() => new
Enumerator
(this, useDictionaryEntry: true);
4 references to Enumerator
System.Collections (4)
System\Collections\Generic\OrderedDictionary.cs (4)
1152
/// <returns>A <see cref="OrderedDictionary{TKey, TValue}.
Enumerator
"/> structure for the <see cref="OrderedDictionary{TKey, TValue}"/>.</returns>
1153
public
Enumerator
GetEnumerator() => new(this, useDictionaryEntry: false);
1634
private OrderedDictionary<TKey, TValue>.
Enumerator
_enumerator;
1878
private OrderedDictionary<TKey, TValue>.
Enumerator
_enumerator;