I want to do a Double to String conversion, but there's a problem. If I convert a Double to a String with the following code:
static void Main(string[] args)
{
double dou = 1000000000000000000;
// Result dou = 1E+18
string str = dou.ToString();
// Again Result str = 1E+18
}
I need the result to be str = 1000000000000000000
.
How do I do this?