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

◆ ToInt32() [9/19]

static int System.Convert.ToInt32 ( long value)
inlinestatic

Definition at line 1389 of file Convert.cs.

1390 {
1391 if (value < int.MinValue || value > int.MaxValue)
1392 {
1394 }
1395 return (int)value;
1396 }
static void ThrowInt32OverflowException()
Definition Convert.cs:485

References System.Convert.ThrowInt32OverflowException(), and System.value.