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

◆ ToChar() [16/18]

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

Definition at line 682 of file Convert.cs.

683 {
684 if (value > 65535)
685 {
687 }
688 return (char)value;
689 }
static void ThrowCharOverflowException()
Definition Convert.cs:455

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