double temp; temp = (double)Convert.ToDouble(\"1234.5678\");
Hey Lads and Ladies, I can\'t for the life of me figure out why the above line isn\'t
Hi as Mario says you must parse it taking into account the regional settings.
double temp = double.Parse("1234.5678", System.Globalization.CultureInfo.CurrentCulture);
Regards.