10 references to GetEnumerator
Microsoft.Build (4)
Collections\CopyOnWritePropertyDictionary.cs (3)
141public ImmutableDictionary<string, T>.Enumerator GetEnumerator() => _backing.GetEnumerator(); 323return _backing.GetEnumerator(); 400_dictionaryEnumerator = dictionary._backing.GetEnumerator();
Instance\ProjectItemInstance.cs (1)
2161_metadataCollectionEnumerator = metadataCollection.GetEnumerator();
Microsoft.Build.Framework (3)
Collections\CopyOnWriteDictionary.cs (3)
303return _backing.GetEnumerator(); 308ImmutableDictionary<string, V>.Enumerator enumerator = _backing.GetEnumerator(); 309return _backing.GetEnumerator();
System.Collections.Immutable (3)
System\Collections\Immutable\ImmutableDictionary_2.cs (3)
715return new DictionaryEnumerator<TKey, TValue>(this.GetEnumerator()); 810this.GetEnumerator(); 825return this.GetEnumerator();