0

这段代码:

string currentPrice = String.Format("{0:c}", ((TblProduct)e.ListItem).Price);

以美元显示价格,即$320.00. 但我想显示比索符号而不是美元符号。我应该使用什么 system.string?{?:?}

4

2 回答 2

7

您需要指定一个附加参数(格式提供程序)以获取适当的货币符号和格式。例如,要格式化为菲律宾:

var currentPrice = String.Format(CultureInfo.GetCultureInfo("en-PH"),
                                 "{0:c}",
                                 ((TblProduct)e.ListItem).Price);

如果未指定格式提供程序,CultureInfo.CurrentCulture则使用。

于 2013-07-04T03:46:44.270 回答
1

试试这个对我有用。我使用 Unicode 字符转义序列,它是“\u”,然后是它的十六进制 unicode 值。

Unicode 字符“比索符号”(U+20B1)

string currentPrice = String.Format("\u20B1{0}", ((TblProduct)e.ListItem).Price);

于 2015-06-16T14:58:08.880 回答