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

◆ ToByte() [12/19]

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

Definition at line 942 of file Convert.cs.

943 {
944 if (value < 0)
945 {
947 }
948 return (byte)value;
949 }
static void ThrowByteOverflowException()
Definition Convert.cs:461

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