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);