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

◆ ToByte() [19/19]

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

Definition at line 961 of file Convert.cs.

962 {
963 if (value > 255)
964 {
966 }
967 return (byte)value;
968 }
static void ThrowByteOverflowException()
Definition Convert.cs:461

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