3 references to ReadOnlySet
System.Private.CoreLib (3)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\CollectionExtensions.cs (1)
77new ReadOnlySet<T>(set);
src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\ReadOnlyCollection.cs (1)
271return new ReadOnlySet<T>(hashSet);
src\libraries\System.Private.CoreLib\src\System\Collections\ObjectModel\ReadOnlySet.cs (1)
28public static ReadOnlySet<T> Empty { get; } = new ReadOnlySet<T>(new HashSet<T>());