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

◆ ToSByte() [19/19]

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

Definition at line 811 of file Convert.cs.

812 {
813 if (value > 127)
814 {
816 }
817 return (sbyte)value;
818 }
static void ThrowSByteOverflowException()
Definition Convert.cs:467

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