values C, E, F, G, X
are among the standard format strings。我想添加另一个标准字符串...也许字母'M'来扩展我的货币格式选项。我已经创建了一个MoneyFormatInfo
类来实现必要的IFormatProvider
和ICustomFormatter
接口。它适用于我可以编写的每个场景,除了这个......
decimal cash = 3124.728m;
//Code '392' is JAPANESE YEN, with basic French formatting.
var frenchmen = new MoneyFormatInfo("392", new CultureInfo("fr-FR"));
result = cash.ToString("m", frenchmen);
Assert.AreEqual(result, "3 124,73 JPY");
我得到的错误消息是“FormatException未被用户代码处理”。
我已经反映了BCL ToString
方法。我看到它只查询标准格式字符串列表;我没有看到任何可以让我解决这个问题的钩点。我错过了什么吗?
以下是目前按预期工作的其他示例......
//Code '978' is the Euro
//The custom "Money" class holds an amount and currency type which
//intentionally cannot be overridden.
Money dough = new Money(8124.348m, "978");
decimal cash = 3124.728m;
string result;
//EURO currency parameters, with basic French formatting
var french = new CultureInfo("fr-FR");
result = String.Format(french, "the money: {0:m}", dough);
Assert.AreEqual(result, "the money: 8 124,35 EUR");
//JAPANESE YEN, with basic French formatting.
var frenchmen = new MoneyFormatInfo("392", new CultureInfo("fr-FR"));
result = String.Format(frenchmen, "the cash: {0:m}", cash);
Assert.AreEqual(result, "the cash: 3 124,73 JPY");
result = dough.ToString("c", frenchmen);
Assert.AreEqual(result, "8 124,35 €");
我的自定义Money
类有一个ToString()覆盖,它执行状态更改,并将'M'格式字符串转换为'C'。简而言之,它的工作原理是因为我可以控制ToString()方法。在BCL十进制类型上,我无法控制ToString()方法。我也不想制作自定义小数类型。
答案 0 :(得分:1)
我认为您可以自定义标准格式的出现方式,但不能实现新的标准格式字符。
class Program
{
static void Main(string[] args)
{
decimal cash = 3124.728m;
Console.WriteLine("Result: {0}", cash.ToString("C",
new MoneyFormatInfo("JPY", new System.Globalization.CultureInfo("fr-FR"))));
}
}
class MoneyFormatInfo : IFormatProvider
{
System.Globalization.NumberFormatInfo numberFormat;
public MoneyFormatInfo(string currencyCode, System.Globalization.CultureInfo culture)
{
numberFormat = culture.NumberFormat;
numberFormat.CurrencySymbol = currencyCode;
}
public object GetFormat(Type formatType)
{
return numberFormat;
}
}
请注意,您仍然会使用" C"格式化货币值的格式代码,但您可以控制格式提供商的货币符号。
答案 1 :(得分:0)
让我们检查您可以轻松阅读的代码
result = cash.ToString("m");
或
result = cash.ToFrenchCurrencyString();
任何阅读第一个示例的开发人员(甚至是你之后)将花费大量时间来解决这段代码的作用和方式。第二个更容易解决,你可以点击F12看它的源代码。所以,我认为使用扩展方法并将编码逻辑放在其中更有用。