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

◆ ToSByte() [2/19]

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

Definition at line 791 of file Convert.cs.

792 {
793 if (value > 127)
794 {
796 }
797 return (sbyte)value;
798 }
static void ThrowSByteOverflowException()
Definition Convert.cs:467

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