3 instantiations of SortKey
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.Icu.cs (1)
756return new SortKey(this, source, options, keyData);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.Invariant.cs (1)
41return new SortKey(this, source, options, keyData);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.Nls.cs (1)
408return new SortKey(this, source, options, keyData);
16 references to SortKey
mscorlib (1)
src\runtime\src\libraries\shims\mscorlib\ref\mscorlib.cs (1)
276[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Globalization.SortKey))]
netstandard (1)
netstandard.cs (1)
847[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Globalization.SortKey))]
System.Private.CoreLib (9)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.cs (3)
1416public SortKey GetSortKey(string source, CompareOptions options) 1426public SortKey GetSortKey(string source) 1436private SortKey CreateSortKeyCore(string source, CompareOptions options) =>
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.Icu.cs (1)
700private unsafe SortKey IcuCreateSortKey(string source, CompareOptions options)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.Invariant.cs (1)
12private SortKey InvariantCreateSortKey(string source, CompareOptions options)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.Nls.cs (1)
357private unsafe SortKey NlsCreateSortKey(string source, CompareOptions options)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\SortKey.cs (3)
46public static int Compare(SortKey sortkey1, SortKey sortkey2) 63value is SortKey other && new ReadOnlySpan<byte>(_keyData).SequenceEqual(other._keyData);
System.Private.Xml (4)
System\Xml\Xsl\Runtime\XmlCollation.Windows.cs (1)
15SortKey sortKey;
System\Xml\Xsl\Runtime\XmlSortKey.cs (3)
225private readonly SortKey? _sortKey; 229public XmlStringSortKey(SortKey sortKey, bool descendingOrder) 253result = SortKey.Compare(_sortKey, that._sortKey);
System.Runtime (1)
src\runtime\artifacts\obj\System.Runtime\Release\net11.0\System.Runtime.Forwards.cs (1)
250[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Globalization.SortKey))]