4 references to CopyOnReadEnumerable
Microsoft.Build (2)
Collections\ItemDictionary.cs (1)
153
return new
CopyOnReadEnumerable
<T, TResult>(this, _itemLists, selector);
Collections\PropertyDictionary.cs (1)
213
return new
CopyOnReadEnumerable
<T, TResult>(this, _properties, selector);
Microsoft.Build.Engine.UnitTests (2)
Collections\CopyOnReadEnumerable_Tests.cs (2)
23
CopyOnReadEnumerable<int, string> enumerable = new
CopyOnReadEnumerable
<int, string>(values, values, i => i.ToString());
41
CopyOnReadEnumerable<string, string> enumerable = new
CopyOnReadEnumerable
<string, string>(values, values, s => s);