31 references to SortedDictionary
Aspire.Dashboard (1)
Components\Controls\Chart\MetricTable.razor.cs (1)
154var percentiles = new SortedDictionary<int, (string Name, double? Value, ValueDirectionChange Direction)>();
dotnet-svcutil-lib (3)
Shared\MSBuildProj.cs (1)
60public SortedDictionary<string, string> _resolvedProperties = new SortedDictionary<string, string>();
Shared\Options\ApplicationOptions.cs (1)
52this.PropertyBag = new SortedDictionary<string, OptionBase>();
Shared\TargetFrameworkHelper.cs (1)
21internal static SortedDictionary<string, List<ProjectDependency>> NetCoreVersionReferenceTable = new SortedDictionary<string, List<ProjectDependency>>
Microsoft.AspNetCore.Components.Endpoints.Tests (1)
Binding\FormDataMapperTests.cs (1)
976var expected = new SortedDictionary<int, int>() { [0] = 10, [1] = 11, [2] = 12, [3] = 13, [4] = 14, [5] = 15, [6] = 16, [7] = 17, [8] = 18, [9] = 19, };
Microsoft.AspNetCore.Identity.EntityFrameworkCore.Test (1)
src\Identity\test\Shared\PriorityOrderer.cs (1)
46var sortedMethods = new SortedDictionary<int, List<XunitTestCase>>();
Microsoft.AspNetCore.Identity.InMemory.Test (1)
src\Identity\test\Shared\PriorityOrderer.cs (1)
46var sortedMethods = new SortedDictionary<int, List<XunitTestCase>>();
Microsoft.AspNetCore.Identity.Test (1)
src\Identity\test\Shared\PriorityOrderer.cs (1)
46var sortedMethods = new SortedDictionary<int, List<XunitTestCase>>();
Microsoft.Build (1)
Definition\Toolset.cs (1)
488SortedDictionary<Version, string> subToolsetsWithVersion = new SortedDictionary<Version, string>();
Microsoft.CodeAnalysis.CSharp (1)
FlowAnalysis\NullableWalker.SnapshotManager.cs (1)
160private readonly SortedDictionary<int, Snapshot> _incrementalSnapshots = new SortedDictionary<int, Snapshot>();
Microsoft.CodeAnalysis.CSharp.Scripting.UnitTests (1)
ObjectFormatterTests.cs (1)
650var obj = new SortedDictionary<int, int>();
Microsoft.CodeAnalysis.Features (2)
CodeFixes\Configuration\ConfigureSeverity\ConfigureSeverityLevelCodeFixProvider.cs (1)
56var analyzerDiagnosticsByCategory = new SortedDictionary<string, ArrayBuilder<Diagnostic>>();
ExtractMethod\MethodExtractor.Analyzer.cs (1)
156var sortedMap = new SortedDictionary<int, ITypeParameterSymbol>();
Microsoft.CodeAnalysis.LanguageServer.Protocol (4)
Features\CodeFixes\CodeFixService.cs (4)
124var spanToErrorDiagnostics = new SortedDictionary<TextSpan, List<DiagnosticData>>(); 125var spanToOtherDiagnostics = new SortedDictionary<TextSpan, List<DiagnosticData>>(); 263var spanToDiagnostics = new SortedDictionary<TextSpan, List<DiagnosticData>>(); 304var spanToDiagnostics = new SortedDictionary<TextSpan, List<DiagnosticData>>
Microsoft.DotNet.Build.Tasks.Packaging (5)
PackageIndex.cs (5)
24public SortedDictionary<string, PackageInfo> Packages { get; set; } = new SortedDictionary<string, PackageInfo>(); 26public SortedDictionary<string, string> ModulesToPackages { get; set; } = new SortedDictionary<string, string>(); 388public SortedDictionary<Version, Version> AssemblyVersionInPackageVersion { get; set; } = new SortedDictionary<Version, Version>(); 490private SortedDictionary<string, SortedDictionary<Version, Version>> inboxVersions = new SortedDictionary<string, SortedDictionary<Version, Version>>(); 503inboxVersions[frameworkKey] = mappings = new SortedDictionary<Version, Version>();
Microsoft.DotNet.VersionTools (1)
BuildManifest\VersionIdentifier.cs (1)
26new SortedDictionary<string, string>
Microsoft.Extensions.AI.Abstractions.Tests (1)
test\Shared\JsonSchemaExporter\TestTypes.cs (1)
815Value: new() { [1] = "one", [2] = "two", [3] = "three" },
Microsoft.ML.TimeSeries (2)
RootCauseAnalyzer.cs (2)
250SortedDictionary<BestDimension, double> entropyGainMap = new SortedDictionary<BestDimension, double>(); 292SortedDictionary<BestDimension, double> entropyMap = new SortedDictionary<BestDimension, double>();
Microsoft.ML.Tokenizers (2)
Model\BPETokenizer.cs (1)
249VocabReverse = new();
Utils\TokenizerExtensions.cs (1)
51SortedDictionary<TValue, TKey> dictionary = new SortedDictionary<TValue, TKey>();
RunTests (1)
AssemblyScheduler.cs (1)
196var currentFilters = new SortedDictionary<AssemblyInfo, List<TestMethodInfo>>();
Shared.Tests (1)
JsonSchemaExporter\TestTypes.cs (1)
815Value: new() { [1] = "one", [2] = "two", [3] = "three" },
System.IO.Packaging (1)
System\IO\Packaging\ZipPackage.cs (1)
1063contentTypeStreamPieces ??= new SortedDictionary<ZipPackagePartPiece, ZipArchiveEntry>();