8 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)
2461SortedSet<string> directories = new SortedSet<string>(StringComparer.OrdinalIgnoreCase);
Graph\ProjectGraph.cs (1)
757var seenTargets = new SortedSet<string>(StringComparer.OrdinalIgnoreCase);
Microsoft.DotNet.XliffTasks (1)
Tasks\EnsureAllResourcesTranslated.cs (1)
26SortedSet<string> untranslatedResourceSet = new(StringComparer.Ordinal);
System.Collections (3)
System\Collections\Generic\SortedDictionary.cs (1)
892public 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)