How do i get the currency pattern for a specific culture?
For Example:
Instead of using:
string.Format(\"{0:c}\", 345.10)
I
Have you tried using string.Format("{0:N2} €", 345.10)? This should format to 2 decimal places in the users culture followed by a space and the euro symbol.
string.Format("{0:N2} €", 345.10)