25 references to SortedDictionary
ILCompiler.Compiler (2)
src\runtime\src\coreclr\tools\Common\Compiler\Win32Resources\ResourceData.ResourcesDataModel.cs (2)
16private readonly SortedDictionary<string, ResType> _resTypeHeadName = new SortedDictionary<string, ResType>(StringComparer.Ordinal); 36public SortedDictionary<string, ResName> NameHeadName = new SortedDictionary<string, ResName>(StringComparer.Ordinal);
ILCompiler.ReadyToRun (2)
src\runtime\src\coreclr\tools\Common\Compiler\Win32Resources\ResourceData.ResourcesDataModel.cs (2)
16private readonly SortedDictionary<string, ResType> _resTypeHeadName = new SortedDictionary<string, ResType>(StringComparer.Ordinal); 36public SortedDictionary<string, ResName> NameHeadName = new SortedDictionary<string, ResName>(StringComparer.Ordinal);
Microsoft.Build (2)
BackEnd\Components\RequestBuilder\TargetUpToDateChecker.cs (2)
1264(s_sortInputsOutputs ? (IDictionary<string, object>)new SortedDictionary<string, object>(StringComparer.OrdinalIgnoreCase) : (IDictionary<string, object>)new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase)); 1270(s_sortInputsOutputs ? (IDictionary<string, object>)new SortedDictionary<string, object>(StringComparer.OrdinalIgnoreCase) : (IDictionary<string, object>)new Dictionary<string, object>(StringComparer.OrdinalIgnoreCase));
Microsoft.Build.Framework (1)
Utilities\VersionUtilities.cs (1)
33SortedDictionary<Version, List<string>> versionValues = new SortedDictionary<Version, List<string>>(ReverseVersionGenericComparer.Comparer);
Microsoft.Build.Tasks.Core (2)
ResolveSDKReference.cs (1)
1347var architectureLocations = new SortedDictionary<string, string>(StringComparer.InvariantCultureIgnoreCase);
src\msbuild\src\Shared\AssemblyFolders\AssemblyFoldersEx.cs (1)
365SortedDictionary<Version, List<string>> targetFrameworkVersionToRegistryVersions = new SortedDictionary<Version, List<string>>(ReverseVersionGenericComparer.Comparer);
Microsoft.Build.Utilities.Core (1)
src\msbuild\src\Shared\AssemblyFolders\AssemblyFoldersEx.cs (1)
365SortedDictionary<Version, List<string>> targetFrameworkVersionToRegistryVersions = new SortedDictionary<Version, List<string>>(ReverseVersionGenericComparer.Comparer);
Microsoft.Data.Analysis (2)
DataFrameColumns\StringDataFrameColumn.cs (1)
240SortedDictionary<string, List<ValueTuple<int, int>>> heapOfValueAndListOfTupleOfSortAndBufferIndex = new SortedDictionary<string, List<ValueTuple<int, int>>>(comparer);
PrimitiveDataFrameColumn.Sort.cs (1)
81SortedDictionary<T, List<ValueTuple<int, int>>> heapOfValueAndListOfTupleOfSortAndBufferIndex = new SortedDictionary<T, List<ValueTuple<int, int>>>(comparer);
Microsoft.ML.Tokenizers (1)
Model\SentencePieceUnigramModel.cs (1)
29_vocab = new SortedDictionary<string, int>(OrdinalUtf8StringComparer.Instance);
Microsoft.ML.Tokenizers.Tests (1)
DoubleArrayTrieTest.cs (1)
53SortedDictionary<string, int> dict = new SortedDictionary<string, int>(OrdinalUtf8StringComparer.Instance);
Microsoft.NET.HostModel (2)
src\runtime\src\coreclr\tools\Common\Compiler\Win32Resources\ResourceData.ResourcesDataModel.cs (2)
16private readonly SortedDictionary<string, ResType> _resTypeHeadName = new SortedDictionary<string, ResType>(StringComparer.Ordinal); 36public SortedDictionary<string, ResName> NameHeadName = new SortedDictionary<string, ResName>(StringComparer.Ordinal);
NuGet.ProjectModel (1)
DependencyGraphSpec.cs (1)
30private readonly SortedDictionary<string, PackageSpec> _projects = new(PathUtility.GetStringComparerBasedOnOS());
NuGet.Resolver (1)
ResolverPackage.cs (1)
47_dependencyIds = new SortedDictionary<string, VersionRange>(StringComparer.OrdinalIgnoreCase);
System.Collections (1)
System\Collections\Generic\SortedDictionary.cs (1)
23public SortedDictionary() : this((IComparer<TKey>?)null)
System.Collections.Immutable (1)
System\Collections\Immutable\ImmutableSortedDictionary_2.cs (1)
851dictionary = new SortedDictionary<TKey, TValue>(this.KeyComparer);
System.Formats.Tar (1)
System\Formats\Tar\TarHelpers.Unix.cs (1)
53=> new SortedDictionary<string, UnixFileMode>(s_reverseStringComparer);
System.Resources.Extensions (2)
src\runtime\src\libraries\Common\src\System\Resources\ResourceWriter.cs (2)
54_resourceList = new SortedDictionary<string, object?>(FastResourceComparer.Default); 73_resourceList = new SortedDictionary<string, object?>(FastResourceComparer.Default);
System.Resources.Writer (2)
src\runtime\src\libraries\Common\src\System\Resources\ResourceWriter.cs (2)
54_resourceList = new SortedDictionary<string, object?>(FastResourceComparer.Default); 73_resourceList = new SortedDictionary<string, object?>(FastResourceComparer.Default);