Why double.Epsilon != std::numeric_limits<double>::min()?
On my PC:
double.Epsilon == 4.9406564584124654E-324and is defined in .NET.
std::numeric_limits<double>::min() == 2.2250738585072014e-308
Is there a way to get 2.2250738585072014e-308 from .NET?
source
share