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

◆ ToInt32() [11/19]

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

Definition at line 1329 of file Convert.cs.

1330 {
1331 if (value != null)
1332 {
1333 return ((IConvertible)value).ToInt32(provider);
1334 }
1335 return 0;
1336 }

References System.value.