15 references to GetEnumerator
Microsoft.Build (7)
Collections\CopyOnWritePropertyDictionary.cs (3)
141public ImmutableDictionary<string, T>.Enumerator GetEnumerator() => _backing.GetEnumerator(); 323return _backing.GetEnumerator(); 400_dictionaryEnumerator = dictionary._backing.GetEnumerator();
CopyOnWriteDictionary.cs (3)
310return _backing.GetEnumerator(); 315ImmutableDictionary<string, V>.Enumerator enumerator = _backing.GetEnumerator(); 316return _backing.GetEnumerator();
Instance\ProjectItemInstance.cs (1)
2164_metadataCollectionEnumerator = metadataCollection.GetEnumerator();
Microsoft.Build.Tasks.Core (1)
CopyOnWriteDictionary.cs (1)
321return _backing.GetEnumerator();
Microsoft.Build.Utilities.Core (1)
CopyOnWriteDictionary.cs (1)
321return _backing.GetEnumerator();
MSBuild (3)
CopyOnWriteDictionary.cs (3)
310return _backing.GetEnumerator(); 315ImmutableDictionary<string, V>.Enumerator enumerator = _backing.GetEnumerator(); 316return _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();