Waarom gaat dit fout ?
Waarom gaat dit fout ? En hoe moet het wel ?
string
x = double.MinValue.ToString();
double y = Convert.ToDouble(x);
de foutmelding is:
An unhandled exception of type 'System.OverflowException' occurred in mscorlib.dll
Additional information: Value was either too large or too small for a Double.
Hiermee gaat het ook niet goed:
string x = double.MinValue.ToString(“F“);