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

◆ ToUInt16() [15/19]

static ushort System.Convert.ToUInt16 ( string? value,
IFormatProvider? provider )
inlinestatic

Definition at line 1305 of file Convert.cs.

1306 {
1307 if (value == null)
1308 {
1309 return 0;
1310 }
1311 return ushort.Parse(value, provider);
1312 }

References System.value.