Posts by Vanderson Pimentel • 59 points
1 post
-
5
votes1
answer1820
viewsQ: How to convert string to double without rounding error?
Because the following command: Convert.ToDouble("199998,99") Results in: 199998.98999999 Already the command: Convert.ToDouble("199998,98") Results in: 199998.98000000001 ?…