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

◆ ToSByte() [13/19]

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

Definition at line 801 of file Convert.cs.

802 {
803 if (value < -128 || value > 127)
804 {
806 }
807 return (sbyte)value;
808 }
static void ThrowSByteOverflowException()
Definition Convert.cs:467

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