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

◆ ToUInt16() [18/19]

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

Definition at line 1267 of file Convert.cs.

1268 {
1269 if (value > 65535)
1270 {
1272 }
1273 return (ushort)value;
1274 }
static void ThrowUInt16OverflowException()
Definition Convert.cs:479

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