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

◆ FromUpperChar() [2/2]

static int System.HexConverter.FromUpperChar ( int c)
inlinestatic

Definition at line 147 of file HexConverter.cs.

148 {
149 if (c <= 71)
150 {
151 return CharToHexLookup[c];
152 }
153 return 255;
154 }
static ReadOnlySpan< byte > CharToHexLookup

References System.HexConverter.CharToHexLookup.