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

◆ ToUInt16() [17/19]

static ushort System.Convert.ToUInt16 ( uint value)
inlinestatic

Definition at line 1251 of file Convert.cs.

1252 {
1253 if (value > 65535)
1254 {
1256 }
1257 return (ushort)value;
1258 }
static void ThrowUInt16OverflowException()
Definition Convert.cs:479

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