Finding currency symbol

  • Thread starter Thread starter Harry Hudini
  • Start date Start date
If you use ToString("C") on your numbers when you output them, they will be
formatted for the devices currency settings at runtime.

You can also use the:-
System.Globalization.RegionInfo.CurrentRegion.CurrencySymbol property to
return the currency symbol as a string.

Peter
 
Back
Top