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

◆ FromChar() [10/10]

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

Definition at line 50 of file HexConverter.cs.

51 {
52 if (c < CharToHexLookup.Length)
53 {
54 return CharToHexLookup[c];
55 }
56 return 255;
57 }
static ReadOnlySpan< byte > CharToHexLookup

References System.HexConverter.CharToHexLookup.