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

◆ ToUInt16() [14/19]

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

Definition at line 1295 of file Convert.cs.

1296 {
1297 if (value == null)
1298 {
1299 return 0;
1300 }
1301 return ushort.Parse(value);
1302 }

References System.value.