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

◆ ToCharLower() [6/6]

static char System.HexConverter.ToCharLower ( int value)
inlinestatic

Definition at line 38 of file HexConverter.cs.

39 {
40 value &= 0xF;
41 value += 48;
42 if (value > 57)
43 {
44 value += 39;
45 }
46 return (char)value;
47 }

References System.value.