I get a double value after certain calculation as 1084218256710914.2
When I convert it to string, it gives me value in some format which contains E i.e exponential part.
I tried string.Format("{0:F8}", value);
which gave me "1,084,218,256,710,910.00000000" as I want max 8 digits after decimal points.
I want output like this "1084218256710914.2"
Can anyone please help me with it?