Hi,
i don't understand:
label1.Text = dsLog.Tables[3].Rows[i][0].ToString();
//Output: 1.00
but when i want to cast to double
double sas_sas = double.Parse(dsLog.Tables[3].Rows[i][0].ToString());
label1.Text = sas_sas.ToString();
//Output: 100
i've tried Convert.ToDouble, but nothing...
Can you help me?

1 answers
Solved with:
System.Threading.Thread.CurrentThread.CurrentCulture = System.Globalization.CultureInfo.CreateSpecificCulture("en-US");answered one year ago by:
82