2 instantiations of Enumerator
System.Collections (2)
System\Collections\Generic\SortedDictionary.cs (2)
244public Enumerator GetEnumerator() => new Enumerator(this, Enumerator.KeyValuePair); 382IDictionaryEnumerator IDictionary.GetEnumerator() => new Enumerator(this, Enumerator.DictEntry);
6 references to Enumerator
System.Collections (5)
System\Collections\Generic\SortedDictionary.cs (5)
244public Enumerator GetEnumerator() => new Enumerator(this, Enumerator.KeyValuePair); 382IDictionaryEnumerator IDictionary.GetEnumerator() => new Enumerator(this, Enumerator.DictEntry); 629private SortedDictionary<TKey, TValue>.Enumerator _dictEnum; 790private SortedDictionary<TKey, TValue>.Enumerator _dictEnum;
System.Speech (1)
Internal\SrgsCompiler\BackEnd.cs (1)
832SortedDictionary<int, Rule>.Enumerator ieFirstArcs = ruleFirstArcs.GetEnumerator();