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

◆ ToSByte() [18/19]

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

Definition at line 851 of file Convert.cs.

852 {
853 if (value > 127)
854 {
856 }
857 return (sbyte)value;
858 }
static void ThrowSByteOverflowException()
Definition Convert.cs:467

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