7 references to Name
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Globalization\CompareInfo.cs (6)
221
culture = CultureInfo.GetCultureInfo(
Name
).LCID; // This is the lcid of the constructing culture (still have to dereference to get target sort)
1516
&&
Name
== otherCompareInfo.
Name
;
1519
public override int GetHashCode() =>
Name
.GetHashCode();
1581
public override string ToString() => "CompareInfo - " +
Name
;
1613
public int LCID => CultureInfo.GetCultureInfo(
Name
).LCID;
src\libraries\System.Private.CoreLib\src\System\Globalization\SortKey.cs (1)
67
public override string ToString() => $"SortKey - {_compareInfo.
Name
}, {_options}, {_string}";