1 write to _textInfoName
System.Private.CoreLib (1)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\TextInfo.cs (1)
42
_textInfoName
= _cultureData.TextInfoName;
7 references to _textInfoName
System.Private.CoreLib (7)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\TextInfo.cs (4)
46
_sortHandle = CompareInfo.NlsGetSortHandle(
_textInfoName
);
70
public int LCID => CultureInfo.GetCultureInfo(
_textInfoName
).LCID;
72
public string CultureName =>
_textInfoName
;
582
bool compareResult = CultureInfo.GetCultureInfo(
_textInfoName
).CompareInfo.Compare("abcdefghijklmnopqrstuvwxyz", "ABCDEFGHIJKLMNOPQRSTUVWXYZ", CompareOptions.IgnoreCase) == 0;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\TextInfo.Icu.cs (1)
33
_needsTurkishCasing = NeedsTurkishCasing(
_textInfoName
) ? NullableBool.True : NullableBool.False;
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\TextInfo.Nls.cs (2)
24
uint linguisticCasing = IsInvariantLocale(
_textInfoName
) ? 0 : LCMAP_LINGUISTIC_CASING;
26
int ret = Interop.Kernel32.LCMapStringEx(_sortHandle != IntPtr.Zero ? null :
_textInfoName
,