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

◆ ToInt32() [14/19]

static int System.Convert.ToInt32 ( string? value)
inlinestatic

Definition at line 1446 of file Convert.cs.

1447 {
1448 if (value == null)
1449 {
1450 return 0;
1451 }
1452 return int.Parse(value);
1453 }

References System.value.