11 references to SortedSet
Microsoft.AspNetCore.HttpLogging (1)
W3CLoggerOptions.cs (1)
115public ISet<string> AdditionalRequestHeaders { get; } = new SortedSet<string>(StringComparer.OrdinalIgnoreCase);
Microsoft.AspNetCore.Mvc.Core (1)
Infrastructure\ActionSelectionTable.cs (1)
113var routeKeys = new SortedSet<string>(StringComparer.OrdinalIgnoreCase);
Microsoft.Build (2)
Evaluation\Expander.cs (1)
2469SortedSet<string> directories = new SortedSet<string>(StringComparer.OrdinalIgnoreCase);
Graph\ProjectGraph.cs (1)
757var seenTargets = new SortedSet<string>(StringComparer.OrdinalIgnoreCase);
Microsoft.CodeAnalysis.UnitTests (1)
Collections\List\TestBase.Generic.cs (1)
276SortedSet<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)
2453var importList = new SortedSet<string>(StringComparer.Ordinal);
Microsoft\VisualBasic\VBCodeGenerator.cs (1)
2240var importList = new SortedSet<string>(StringComparer.OrdinalIgnoreCase);
System.Collections (3)
System\Collections\Generic\SortedDictionary.cs (1)
886public 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)