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

◆ ToChar() [12/18]

static char System.Convert.ToChar ( sbyte value)
inlinestatic

Definition at line 647 of file Convert.cs.

648 {
649 if (value < 0)
650 {
652 }
653 return (char)value;
654 }
static void ThrowCharOverflowException()
Definition Convert.cs:455

References System.Convert.ThrowCharOverflowException(), and System.value.