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

◆ ToUInt64() [9/19]

static ulong System.Convert.ToUInt64 ( long value)
inlinestatic

Definition at line 1822 of file Convert.cs.

1823 {
1824 if (value < 0)
1825 {
1827 }
1828 return (ulong)value;
1829 }
static void ThrowUInt64OverflowException()
Definition Convert.cs:503

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