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

◆ ToInt32() [15/19]

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

Definition at line 1455 of file Convert.cs.

1456 {
1457 if (value == null)
1458 {
1459 return 0;
1460 }
1461 return int.Parse(value, provider);
1462 }

References System.value.