3 instantiations of SortKey
System.Private.CoreLib (3)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.Icu.cs (1)
756
return new
SortKey
(this, source, options, keyData);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.Invariant.cs (1)
41
return new
SortKey
(this, source, options, keyData);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.Nls.cs (1)
408
return 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)
1416
public
SortKey
GetSortKey(string source, CompareOptions options)
1426
public
SortKey
GetSortKey(string source)
1436
private
SortKey
CreateSortKeyCore(string source, CompareOptions options) =>
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.Icu.cs (1)
700
private unsafe
SortKey
IcuCreateSortKey(string source, CompareOptions options)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.Invariant.cs (1)
12
private
SortKey
InvariantCreateSortKey(string source, CompareOptions options)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.Nls.cs (1)
357
private unsafe
SortKey
NlsCreateSortKey(string source, CompareOptions options)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\SortKey.cs (3)
46
public static int Compare(
SortKey
sortkey1,
SortKey
sortkey2)
63
value is
SortKey
other && new ReadOnlySpan<byte>(_keyData).SequenceEqual(other._keyData);
System.Private.Xml (4)
System\Xml\Xsl\Runtime\XmlCollation.Windows.cs (1)
15
SortKey
sortKey;
System\Xml\Xsl\Runtime\XmlSortKey.cs (3)
225
private readonly
SortKey
? _sortKey;
229
public XmlStringSortKey(
SortKey
sortKey, bool descendingOrder)
253
result =
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
))]