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
You can use string.Format("{0:c}", value).
string.Format("{0:c}", value)
See also here: