11 references to SortedSet
Microsoft.AspNetCore.HttpLogging (1)
W3CLoggerOptions.cs (1)
115
public ISet<string> AdditionalRequestHeaders { get; } = new
SortedSet
<string>(StringComparer.OrdinalIgnoreCase);
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\ActionSelectionTable.cs (1)
113
var routeKeys = new
SortedSet
<string>(StringComparer.OrdinalIgnoreCase);
Microsoft.Build (2)
Evaluation\Expander.cs (1)
2469
SortedSet<string> directories = new
SortedSet
<string>(StringComparer.OrdinalIgnoreCase);
Graph\ProjectGraph.cs (1)
757
var seenTargets = new
SortedSet
<string>(StringComparer.OrdinalIgnoreCase);
Microsoft.CodeAnalysis.UnitTests (1)
Collections\List\TestBase.Generic.cs (1)
276
SortedSet<T> set = new
SortedSet
<T>(GetIComparer());
Microsoft.ML.Sweeper (1)
Algorithms\KdoSweeper.cs (1)
105
_alreadySeenConfigs = new
SortedSet
<float[]>(new FloatArrayComparer());
System.CodeDom (2)
Microsoft\CSharp\CSharpCodeGenerator.cs (1)
2453
var importList = new
SortedSet
<string>(StringComparer.Ordinal);
Microsoft\VisualBasic\VBCodeGenerator.cs (1)
2240
var importList = new
SortedSet
<string>(StringComparer.OrdinalIgnoreCase);
System.Collections (3)
System\Collections\Generic\SortedDictionary.cs (1)
886
public TreeSet(IComparer<T>? comparer) :
base
(comparer) { }
System\Collections\Generic\SortedSet.cs (1)
85
:
this
(comparer)
System\Collections\Generic\SortedSet.TreeSubSet.cs (1)
39
:
base
(Underlying.Comparer)