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

◆ ToInt16() [8/19]

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

Definition at line 1095 of file Convert.cs.

1096 {
1097 if (value < -32768 || value > 32767)
1098 {
1100 }
1101 return (short)value;
1102 }
static void ThrowInt16OverflowException()
Definition Convert.cs:473

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