blah blah blah is here! blah blah » Close

1
votes
1 answers

double-precision numbers being miscalculated

I've wasted too much time trying to chase down this very strange bug. Simply put, if I say, for example, double a = 1.3; double b = 4.5; double c = a - b; then the result for c will be -3.2. We all know that despite whatever bla ...

0
votes
2 answers

What datatype matches sql server's float in c#?

Sql server has a data type named float (floating point). Which data type in c# best matches float?

Feedback