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

◆ ToSByte() [17/19]

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

Definition at line 831 of file Convert.cs.

832 {
833 if (value > 127)
834 {
836 }
837 return (sbyte)value;
838 }
static void ThrowSByteOverflowException()
Definition Convert.cs:467

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