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