private string FormatMoney(long value) { UICurrencyWrapper uicw = new UICurrencyWrapper(long.MaxValue); uicw.Check(value * 100, Settings.moneyFormatNoCents); return(uicw.result); }