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