这段代码:
string currentPrice = String.Format("{0:c}", ((TblProduct)e.ListItem).Price);
以美元显示价格,即$320.00
. 但我想显示比索符号而不是美元符号。我应该使用什么 system.string?{?:?}
这段代码:
string currentPrice = String.Format("{0:c}", ((TblProduct)e.ListItem).Price);
以美元显示价格,即$320.00
. 但我想显示比索符号而不是美元符号。我应该使用什么 system.string?{?:?}
您需要指定一个附加参数(格式提供程序)以获取适当的货币符号和格式。例如,要格式化为菲律宾:
var currentPrice = String.Format(CultureInfo.GetCultureInfo("en-PH"),
"{0:c}",
((TblProduct)e.ListItem).Price);
如果未指定格式提供程序,CultureInfo.CurrentCulture
则使用。
试试这个对我有用。我使用 Unicode 字符转义序列,它是“\u”,然后是它的十六进制 unicode 值。
string currentPrice = String.Format("\u20B1{0}", ((TblProduct)e.ListItem).Price);