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

◆ ToInt16() [18/19]

static short System.Convert.ToInt16 ( ulong value)
inlinestatic

Definition at line 1129 of file Convert.cs.

1130 {
1131 if (value > 32767)
1132 {
1134 }
1135 return (short)value;
1136 }
static void ThrowInt16OverflowException()
Definition Convert.cs:473

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