I am using the below code:
string.Format("{0:###,###,###,###,###.00}",12005557590928.143);
to convert the double value to string.
it gives the output as "12,005,557,590,928.10"
if I change it to
string.Format("{0:###,###,###,###,###.##}",12005557590928.143);
I get. "12,005,557,590,928.1".
How can I get the output as "12005557590928.143"?