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

◆ ToSByte() [8/19]

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

Definition at line 821 of file Convert.cs.

822 {
823 if (value < -128 || value > 127)
824 {
826 }
827 return (sbyte)value;
828 }
static void ThrowSByteOverflowException()
Definition Convert.cs:467

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