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

◆ ToByte() [18/19]

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

Definition at line 991 of file Convert.cs.

992 {
993 if (value > 255)
994 {
996 }
997 return (byte)value;
998 }
static void ThrowByteOverflowException()
Definition Convert.cs:461

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