Hi,
I developed an application for my study project to do some mathematical calculations.
In this application, I am reading from a text file which contains some numbers.
Now the problem is that it works correctly on my system but not on some other systems. When I debugged the application on the system where it was not working I found that the method
double.parse(string)
is returning wrong results. When the string is "0.8", it returns 8. And similarly all the numbers are missing the decimal.
I developed this application in dot net 3.5.
Somebody pls tell me whats going on. Why it is working on some systems and not on others. What I need to do.
|