15 references to GetEnumerator
Microsoft.Build (7)
Collections\CopyOnWritePropertyDictionary.cs (3)
141
public ImmutableDictionary<string, T>.Enumerator GetEnumerator() => _backing.
GetEnumerator
();
323
return _backing.
GetEnumerator
();
400
_dictionaryEnumerator = dictionary._backing.
GetEnumerator
();
CopyOnWriteDictionary.cs (3)
310
return _backing.
GetEnumerator
();
315
ImmutableDictionary<string, V>.Enumerator enumerator = _backing.
GetEnumerator
();
316
return _backing.
GetEnumerator
();
Instance\ProjectItemInstance.cs (1)
2164
_metadataCollectionEnumerator = metadataCollection.
GetEnumerator
();
Microsoft.Build.Tasks.Core (1)
CopyOnWriteDictionary.cs (1)
321
return _backing.
GetEnumerator
();
Microsoft.Build.Utilities.Core (1)
CopyOnWriteDictionary.cs (1)
321
return _backing.
GetEnumerator
();
MSBuild (3)
CopyOnWriteDictionary.cs (3)
310
return _backing.
GetEnumerator
();
315
ImmutableDictionary<string, V>.Enumerator enumerator = _backing.
GetEnumerator
();
316
return _backing.
GetEnumerator
();
System.Collections.Immutable (3)
System\Collections\Immutable\ImmutableDictionary_2.cs (3)
715
return new DictionaryEnumerator<TKey, TValue>(this.
GetEnumerator
());
810
this.
GetEnumerator
();
825
return this.
GetEnumerator
();