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