Hi, I have these numbers:
5.25
10251.35
5
and I want them to be formatted with groups and always with 2 decimals ,XX
this is what .ToString("N2")
does:
5,25
10.251,35
5
How can i make the '5' look like 5,00 too ? And for multiple cultures of course (en: 5.0, de: 5,0 ...)
In fact this question has no sense, N2 should do it at all costs. The problem was in my WebServer.