asp.net - Displaying currency in C# -


I need to display data values ​​in American currency format. I mean 190.8 should be displayed as $ 190.80 for some reason I can not understand how to do this, any advice?

You can clearly specify American culture:

  String.format (cultureInfoGetCalcherInfo ("N-US"), "{0: C}", DecimalWall) indicates the default currency format for the specified culture, What are you doing in this case if you want a US currency symbol with continental European number format (comma instead of period) So your job will definitely be tough ... 


Comments