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

◆ ToSByte() [9/19]

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

Definition at line 841 of file Convert.cs.

842 {
843 if (value < -128 || value > 127)
844 {
846 }
847 return (sbyte)value;
848 }
static void ThrowSByteOverflowException()
Definition Convert.cs:467

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