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

◆ ToUInt64() [11/19]

static ulong System.Convert.ToUInt64 ( object? value,
IFormatProvider? provider )
inlinestatic

Definition at line 1748 of file Convert.cs.

1749 {
1750 if (value != null)
1751 {
1752 return ((IConvertible)value).ToUInt64(provider);
1753 }
1754 return 0uL;
1755 }

References System.value.