Double value not correct on Device
- by Clue
int min = Int32.Parse(minutebox.Text);
double kj = Convert.ToDouble(a.kj);
double res = ((kj * op.koerpergewicht) * min);
textbox.Text = res.ToString();
Shows me the correct number (with its punctuation - i. e. 2.33) on my English WP7-Emulator. However it doesn't work on my Device, which is set to German.
The value is correct but the point, comma or whatever in that double value isn't shown correct.
43.22 on Emulator - 4322 on Device
Why is that?