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