3 references to SortedSet
System (3)
compmod\system\collections\generic\sorteddictionary.cs (1)
796public TreeSet(ICollection<T> collection, IComparer<T> comparer) : base(collection, comparer) { }
compmod\system\collections\generic\sortedset.cs (2)
107public SortedSet(IEnumerable<T> collection) : this(collection, Comparer<T>.Default) { } 997SortedSet<T> dummy = new SortedSet<T>(s, this.comparer);