terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ FormatCurrency()

static void System.Number.FormatCurrency ( ValueStringBuilder sb,
Number::NumberBuffer number,
int nMinDigits,
int nMaxDigits,
NumberFormatInfo info )
inlinestaticprivate

Definition at line 707 of file Number.cs.

708 {
709 bool sign = number.sign;
710 long num = 0L;
711 int[] currencyGroupSizes = info.currencyGroupSizes;
712 string currencyGroupSeparator = info.currencyGroupSeparator;
713 string currencyDecimalSeparator = info.currencyDecimalSeparator;
714 Number.FormatFixed(sb, number, (int)num, nMaxDigits, info, currencyGroupSizes, currencyDecimalSeparator, currencyGroupSeparator);
715 }
class f__AnonymousType0<< Count > j__TPar
static unsafe void FormatFixed(ValueStringBuilder sb, Number.NumberBuffer number, int nMinDigits, int nMaxDigits, NumberFormatInfo info, int[] groupDigits, string sDecimal, string sGroup)
Definition Number.cs:718

References System.Number.FormatFixed(), System.info, j__TPar, and System.L.