I’m reading a XML file with values in it. When I read them they are strings.
So when I try to convert them to Double or Decimal the point disappears.
decimal dec = Convert.ToDecimal("3.1922");
MessageBox.Show(dec.ToString()); // 31922
What am I doing wrong?
It is related with your current culture