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

◆ ToCharUpper() [6/6]

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

Definition at line 32 of file HexConverter.cs.

33 {
34 value &= 0xF;
35 value += 48;
36 if (value > 57)
37 {
38 value += 7;
39 }
40 return (char)value;
41 }

References System.value.