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

◆ ToUInt32() [18/19]

static uint System.Convert.ToUInt32 ( ulong value)
inlinestatic

Definition at line 1560 of file Convert.cs.

1561 {
1562 if (value > uint.MaxValue)
1563 {
1565 }
1566 return (uint)value;
1567 }
static void ThrowUInt32OverflowException()
Definition Convert.cs:491

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