I am trying to round off below decimal number upto 4 decimal point. the below decimal no is
1.0715086071862673E+301 but when i am using Math.Round function.it's not working and returning same above no.please let me know how to round this no.
**code here:**
double s=2.0;
double ku = Math.Pow(s, 1000);
double jlk = Math.Round(ku, 4);
here depending on my logic i need only 1.0715 number.