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

◆ ToInt16() [9/19]

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

Definition at line 1119 of file Convert.cs.

1120 {
1121 if (value < -32768 || value > 32767)
1122 {
1124 }
1125 return (short)value;
1126 }
static void ThrowInt16OverflowException()
Definition Convert.cs:473

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