mirror of
https://gitlab.com/Kwoth/nadekobot.git
synced 2025-09-10 17:28:27 -04:00
29 lines
854 B
C#
29 lines
854 B
C#
using System.Globalization;
|
|
using System.Numerics;
|
|
|
|
namespace NadekoBot.Common;
|
|
|
|
public interface ICurrencyProvider
|
|
{
|
|
string GetCurrencySign();
|
|
}
|
|
|
|
public static class CurrencyHelper
|
|
{
|
|
public static string N<T>(T cur, IFormatProvider format)
|
|
where T : INumber<T>
|
|
=> cur.ToString("C0", format);
|
|
|
|
public static string N<T>(T cur, CultureInfo culture, string currencySign)
|
|
where T : INumber<T>
|
|
=> N(cur, GetCurrencyFormat(culture, currencySign));
|
|
|
|
private static IFormatProvider GetCurrencyFormat(CultureInfo culture, string currencySign)
|
|
{
|
|
var flowersCurrencyCulture = (CultureInfo)culture.Clone();
|
|
flowersCurrencyCulture.NumberFormat.CurrencySymbol = currencySign;
|
|
flowersCurrencyCulture.NumberFormat.CurrencyNegativePattern = 5;
|
|
|
|
return flowersCurrencyCulture;
|
|
}
|
|
} |