I have a strange issue using double numbers in C# . NET here is my test:
double my_value = 0.49;
the problem is that the variable value shown is instead 0.48999999999999999 I do not need to display 0.49 using Math.Round()
function; I need to exactly store this value.
Thank you.