Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个字符串格式化程序:
String.Format("{0:c}", team.sales);
当我这样做时,字符串会打印一个井号(£)我有什么办法可以强制格式化程序显示美元($)吗?
int money = 125000000; CultureInfo us = CultureInfo.ReadOnly(new CultureInfo("en-US")); String result = String.Format(us, @"{0:c}", money);