8 references to SortedSet
Microsoft.AspNetCore.HttpLogging (1)
W3CLoggerOptions.cs (1)
128var clonedSet = new SortedSet<string>(options.AdditionalRequestHeaders, StringComparer.InvariantCultureIgnoreCase);
Microsoft.DotNet.XUnitAssert.Tests (1)
SetExtensions.cs (1)
6 new SortedSet<T>(set, comparer);
System.Collections (3)
System\Collections\Generic\SortedDictionary.cs (1)
894internal TreeSet(TreeSet<T> set, IComparer<T>? comparer) : base(set, comparer) { }
System\Collections\Generic\SortedSet.cs (2)
82public SortedSet(IEnumerable<T> collection) : this(collection, Comparer<T>.Default) { } 858SortedSet<T> dummy = new SortedSet<T>(asSorted, comparer);
System.Collections.Immutable (3)
System\Collections\Immutable\ImmutableSortedSet_1.cs (3)
390var otherSet = new SortedSet<T>(other, this.KeyComparer); 432var otherSet = new SortedSet<T>(other, this.KeyComparer); 509var otherSet = new SortedSet<T>(other, this.KeyComparer);