Currency format for display

前端 未结 7 1197
忘了有多久
忘了有多久 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:22

    This kind of functionality is built in.

    When using a decimal you can use a format string "C" or "c".

    decimal dec = 123.00M;
    string uk = dec.ToString("C", new CultureInfo("en-GB")); // uk holds "£123.00"
    string us = dec.ToString("C", new CultureInfo("en-US")); // us holds "$123.00"
    

提交回复
热议问题