In my model I want to format the output of a double. I'm trying to output a number like this:
100000000 as 100.000.000 (simply a dot separator)
But by using this (currency format)
[DisplayFormat(DataFormatString = "{0:C}")]
Result => 424.232.344 kr
I also get the currency symbol (depending on the culture, in my case "kr") and I don't want that. I simply want the dot separator but without the currency.
Any suggestions?