Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ToUpper() [2/2]

static char System.Char.ToUpper ( char c,
CultureInfo culture )
inlinestatic

Definition at line 279 of file Char.cs.

280 {
281 if (culture == null)
282 {
283 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.culture);
284 }
285 return culture.TextInfo.ToUpper(c);
286 }

References System.culture, and System.ThrowHelper.ThrowArgumentNullException().