1 instantiation of Enumerator
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (1)
2095public Enumerator GetEnumerator() => new Enumerator(_dictionary);
6 references to Enumerator
Microsoft.ML.Tests (1)
TextLoaderTests.cs (1)
741var irisFirstRowValues = irisFirstRow.Values.GetEnumerator();
PresentationFramework (1)
MS\Internal\Annotations\Storage\StoreAnnotationsMap.cs (1)
113Dictionary<Guid, CachedAnnotation>.ValueCollection.Enumerator annotationsEnumerator = _currentAnnotations.Values.GetEnumerator();
System.Net.Primitives (3)
System\Net\CredentialCache.cs (3)
246private Dictionary<TKey, NetworkCredential>.ValueCollection.Enumerator _enumerator; // mutable struct field deliberately not readonly. 270private Dictionary<CredentialHostKey, NetworkCredential>.ValueCollection.Enumerator _enumerator; // mutable struct field deliberately not readonly. 310internal static bool MoveNext<TKey, TValue>(ref Dictionary<TKey, TValue>.ValueCollection.Enumerator enumerator, out TValue current) where TKey : notnull
System.Private.CoreLib (1)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (1)
2095public Enumerator GetEnumerator() => new Enumerator(_dictionary);