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

◆ ToInt16() [19/19]

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

Definition at line 1086 of file Convert.cs.

1087 {
1088 if (value > 32767)
1089 {
1091 }
1092 return (short)value;
1093 }
static void ThrowInt16OverflowException()
Definition Convert.cs:473

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