10 references to Invariant
System.Private.CoreLib (10)
src\libraries\System.Private.CoreLib\src\System\Globalization\Ordinal.cs (1)
703
TextInfo.
Invariant
.ChangeCaseToUpper(source, destination); // this is the best so far for NLS.
src\libraries\System.Private.CoreLib\src\System\Globalization\TextInfo.cs (3)
168
return
Invariant
.ChangeCase(c, toUpper: false);
203
:
Invariant
.ChangeCase(c, toUpper: true);
439
return
Invariant
.ChangeCase(c, toUpper: true);
src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.Globalization.cs (2)
235
TextInfo.
Invariant
.ChangeCaseToLower(source, destination);
287
TextInfo.
Invariant
.ChangeCaseToUpper(source, destination);
src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (2)
2307
return TextInfo.
Invariant
.ToLower(this);
2322
return TextInfo.
Invariant
.ToUpper(this);
src\libraries\System.Private.CoreLib\src\System\Text\Rune.cs (2)
1459
return ChangeCaseCultureAware(value, TextInfo.
Invariant
, toUpper: false);
1508
return ChangeCaseCultureAware(value, TextInfo.
Invariant
, toUpper: true);