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

◆ ToInt16() [11/19]

static short System.Convert.ToInt16 ( object? value,
IFormatProvider? provider )
inlinestatic

Definition at line 1047 of file Convert.cs.

1048 {
1049 if (value != null)
1050 {
1051 return ((IConvertible)value).ToInt16(provider);
1052 }
1053 return 0;
1054 }

References System.value.