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

◆ ToSByte() [3/19]

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

Definition at line 781 of file Convert.cs.

782 {
783 if (value > '\u007f')
784 {
786 }
787 return (sbyte)value;
788 }
static void ThrowSByteOverflowException()
Definition Convert.cs:467

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