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

◆ ToInt64() [11/19]

static long System.Convert.ToInt64 ( object? value,
IFormatProvider? provider )
inlinestatic

Definition at line 1632 of file Convert.cs.

1633 {
1634 if (value != null)
1635 {
1636 return ((IConvertible)value).ToInt64(provider);
1637 }
1638 return 0L;
1639 }

References System.L, and System.value.