5 references to GetEnumerator
System.Collections (3)
System\Collections\Generic\OrderedDictionary.cs (3)
1158
GetEnumerator
();
1637
internal Enumerator(OrderedDictionary<TKey, TValue> dictionary) => _enumerator = dictionary.
GetEnumerator
();
1881
internal Enumerator(OrderedDictionary<TKey, TValue> dictionary) => _enumerator = dictionary.
GetEnumerator
();
System.Text.Json (2)
System\Text\Json\Nodes\JsonObject.IDictionary.cs (2)
159
public IEnumerator<KeyValuePair<string, JsonNode?>> GetEnumerator() => Dictionary.
GetEnumerator
();
217
IEnumerator IEnumerable.GetEnumerator() => Dictionary.
GetEnumerator
();