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

◆ ToInt16() [14/19]

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

Definition at line 1153 of file Convert.cs.

1154 {
1155 if (value == null)
1156 {
1157 return 0;
1158 }
1159 return short.Parse(value);
1160 }

References System.value.