Currency format for display

前端 未结 7 1192
忘了有多久
忘了有多久 2020-11-27 06:50

Is there a way to format the correct currency representation for a country?

Example UK -£127.54 Netherlands € 127,54- USA $127.54

etc..

Some things to

7条回答
  •  无人及你
    2020-11-27 07:13

    You can use string.Format("{0:c}", value).

    See also here:

    • Currency Formatting in the .NET Framework

提交回复
热议问题