How to I get double.ToString to not sometimes truncate last digits.
If I show a double in Visualstudio Immediate window or Quickwatch I see 17 decimals. When I convert it to a string I see 15.
There is probably a good reason for this but my problem is how to get around it.
? 0.87912328514094507
0.87912328514094507
? 0.87912328514094507.ToString()
"0,879123285140945"
Dotnet 4.6.2 on a Win7 fwiw.