I have DataTable which contains decimal field. Also, I have xml file with data. In this file, decimals using comma separator instead of dot. When I try to run this code:
var xmlTextReader = new XmlTextReader(new StringReader(xmlText));
dataTable.ReadXml(xmlTextReader);
It throws exception "Input string was not in a correct format". How can I fix this?