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

◆ ToInt16() [15/19]

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

Definition at line 1162 of file Convert.cs.

1163 {
1164 if (value == null)
1165 {
1166 return 0;
1167 }
1168 return short.Parse(value, provider);
1169 }

References System.value.