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

◆ ToInt32() [18/19]

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

Definition at line 1399 of file Convert.cs.

1400 {
1401 if (value > int.MaxValue)
1402 {
1404 }
1405 return (int)value;
1406 }
static void ThrowInt32OverflowException()
Definition Convert.cs:485

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