12 references to Invariant
System.Private.CoreLib (12)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\Ordinal.cs (2)
704TextInfo.Invariant.ChangeCaseToUpper(source, destination); // this is the best so far for NLS. 730TextInfo.Invariant.ChangeCaseToLower(source, destination); // this is the best so far for NLS.
src\runtime\src\libraries\System.Private.CoreLib\src\System\Globalization\TextInfo.cs (6)
161return Invariant.ChangeCase(c, toUpper: false); 201: Invariant.ChangeCase(c, toUpper: true); 221: PreserveOrdinalLowerCasingClass(c, Invariant.ChangeCase(c, toUpper: false)); 289instance ??= Invariant; 401instance ??= Invariant; 490return Invariant.ChangeCase(c, toUpper: true);
src\runtime\src\libraries\System.Private.CoreLib\src\System\MemoryExtensions.Globalization.cs (2)
277TextInfo.Invariant.ChangeCaseToLower(source, destination); 329TextInfo.Invariant.ChangeCaseToUpper(source, destination);
src\runtime\src\libraries\System.Private.CoreLib\src\System\Text\Rune.cs (2)
1539return ChangeCaseCultureAware(value, TextInfo.Invariant, toUpper: false); 1588return ChangeCaseCultureAware(value, TextInfo.Invariant, toUpper: true);