7 references to Name
System.Private.CoreLib (7)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CultureData.cs (6)
931
if (!GlobalizationMode.Invariant &&
Name
.Length > 0)
936
Name
.Equals("zh-CHT", StringComparison.OrdinalIgnoreCase) ? "zh-Hant" :
937
Name
.Equals("zh-CHS", StringComparison.OrdinalIgnoreCase) ? "zh-Hans" :
938
Name
);
1113
if (!GlobalizationMode.Invariant &&
Name
.Length > 0)
1900
internal bool IsInvariantCulture => string.IsNullOrEmpty(
Name
);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\CultureInfo.cs (1)
539
public virtual string Name => _nonSortName ??= (_cultureData.
Name
?? string.Empty);