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

◆ IsHexUpperChar()

static bool System.HexConverter.IsHexUpperChar ( int c)
inlinestatic

Definition at line 202 of file HexConverter.cs.

203 {
204 if ((uint)(c - 48) > 9u)
205 {
206 return (uint)(c - 65) <= 5u;
207 }
208 return true;
209 }