Terraria
v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
◆
ToCharLower()
[6/6]
static char System.HexConverter.ToCharLower
(
int
value
)
inline
static
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
}
System.ExceptionArgument.value
@ value
References
System.value
.
System
HexConverter
Generated by
1.10.0