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

◆ ToInt64() [14/19]

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

Definition at line 1714 of file Convert.cs.

1715 {
1716 if (value == null)
1717 {
1718 return 0L;
1719 }
1720 return long.Parse(value);
1721 }

References System.L, and System.value.