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

◆ ToByte() [13/19]

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

Definition at line 951 of file Convert.cs.

952 {
953 if ((uint)value > 255u)
954 {
956 }
957 return (byte)value;
958 }
static void ThrowByteOverflowException()
Definition Convert.cs:461

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