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

◆ ToByte() [17/19]

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

Definition at line 976 of file Convert.cs.

977 {
978 if (value > 255)
979 {
981 }
982 return (byte)value;
983 }
static void ThrowByteOverflowException()
Definition Convert.cs:461

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