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

◆ ToChar() [17/18]

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

Definition at line 697 of file Convert.cs.

698 {
699 if (value > 65535)
700 {
702 }
703 return (char)value;
704 }
static void ThrowCharOverflowException()
Definition Convert.cs:455

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