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

◆ ToLower() [2/2]

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

Definition at line 298 of file Char.cs.

299 {
300 if (culture == null)
301 {
302 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.culture);
303 }
304 return culture.TextInfo.ToLower(c);
305 }

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