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

◆ ToInt16() [17/19]

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

Definition at line 1105 of file Convert.cs.

1106 {
1107 if (value > 32767)
1108 {
1110 }
1111 return (short)value;
1112 }
static void ThrowInt16OverflowException()
Definition Convert.cs:473

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