当我从 XML 文件中读取时,我像这样读取它并且它可以工作,
decimal checkkkk = Config.Location.test.Longitude;
textBox3.Text = checkkkk.ToString(CultureInfo.InvariantCulture);
我想将它写回同一个 XML 文件,此时我遇到了错误..!
decimal value;
Configs.Location.test.Longitude =
decimal.TryParse(textBox3.Text, NumberStyles.Any, CultureInfo.InvariantCulture.NumberFormat, out value);
错误是什么?