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

◆ Int64ToDecStr()

static string System.Number.Int64ToDecStr ( long value)
inlinestatic

Definition at line 2475 of file Number.cs.

2476 {
2477 if (value < 0)
2478 {
2479 return NegativeInt64ToDecStr(value, -1, NumberFormatInfo.CurrentInfo.NegativeSign);
2480 }
2481 return UInt64ToDecStr((ulong)value, -1);
2482 }
static unsafe string UInt64ToDecStr(ulong value, int digits)
Definition Number.cs:2606
static unsafe string NegativeInt64ToDecStr(long input, int digits, string sNegative)
Definition Number.cs:2484

References System.Globalization.NumberFormatInfo.CurrentInfo, System.Number.NegativeInt64ToDecStr(), System.Number.UInt64ToDecStr(), and System.value.

Referenced by System.Int64.ToString().