I have calculation statement in C# as below statement:
(-0.0116 * (5.08 - 0.52 * Math.Pow(5.08, 1.3)) * Math.Pow(0.5, 1.1) * (-0.14 * Math.Pow((19000 * 0.5), 0.8)))
When I debug and add this statement to watch, it was shows as below screenshot:

but when assign to double variable, the result was changed:

How do I get 0.89713135944117184 without changing any of the implementation?
 
     
    