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

◆ ToInt64() [15/19]

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

Definition at line 1723 of file Convert.cs.

1724 {
1725 if (value == null)
1726 {
1727 return 0L;
1728 }
1729 return long.Parse(value, provider);
1730 }

References System.L, and System.value.