2021-08-25 18:24:44 +02:00
|
|
|
|
using System.Globalization;
|
|
|
|
|
|
|
|
|
|
namespace EDJournal {
|
|
|
|
|
public class Credits {
|
|
|
|
|
public static string FormatCredits(int amount) {
|
2021-08-27 22:37:06 +02:00
|
|
|
|
var format = new CultureInfo(CultureInfo.CurrentCulture.Name, true).NumberFormat;
|
2021-08-27 22:15:56 +02:00
|
|
|
|
format.NumberGroupSeparator = ",";
|
|
|
|
|
format.NumberGroupSizes = new int[1] { 3 };
|
2021-08-27 22:37:06 +02:00
|
|
|
|
format.NumberDecimalDigits = 0;
|
2021-08-25 18:24:44 +02:00
|
|
|
|
if ((amount % 1000000) == 0) {
|
|
|
|
|
amount /= 1000000;
|
2021-08-27 22:37:06 +02:00
|
|
|
|
return string.Format("{0}M CR", amount.ToString("N", format));
|
2021-08-25 18:24:44 +02:00
|
|
|
|
} else if ((amount % 1000) == 0) {
|
|
|
|
|
amount /= 1000;
|
2021-08-27 22:37:06 +02:00
|
|
|
|
return string.Format("{0}K CR", amount.ToString("N", format));
|
2021-08-25 18:24:44 +02:00
|
|
|
|
}
|
|
|
|
|
|
2021-08-27 22:37:06 +02:00
|
|
|
|
return string.Format("{0} CR", amount.ToString("N", format));
|
2021-08-25 18:24:44 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|