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