Hi all,
I have a scenario here where I don't get the value I'm expecting.
Double a = 2058.595;
Math.Round(a, 2, MidpointRounding.AwayFromZero);
But what I'm getting is 2058.59,
I wanted to get the value of 2058.60.
I tried using the MidpointRound.ToEven but I still got the same result
Thanks,
Go to the complete details ...