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