10 references to GetEnumerator
Microsoft.Build (4)
Collections\CopyOnWritePropertyDictionary.cs (3)
141
public ImmutableDictionary<string, T>.Enumerator GetEnumerator() => _backing.
GetEnumerator
();
323
return _backing.
GetEnumerator
();
400
_dictionaryEnumerator = dictionary._backing.
GetEnumerator
();
Instance\ProjectItemInstance.cs (1)
2161
_metadataCollectionEnumerator = metadataCollection.
GetEnumerator
();
Microsoft.Build.Framework (3)
Collections\CopyOnWriteDictionary.cs (3)
303
return _backing.
GetEnumerator
();
308
ImmutableDictionary<string, V>.Enumerator enumerator = _backing.
GetEnumerator
();
309
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
();