I have the following code
string myXMLfile = @"path to file";
DataSet ds = new DataSet("myDataset");
DataTable dataTable = new DataTable("ExtID");
dataTable.Columns.Add("Ext", typeof(string));
dataTable.Columns.Add("TargetPath", typeof(string));
ds.Tables.Add(dataTable);
ds.ReadXml(myXMLfile);
The dataset contains the columns and the amount of rows is correct but they're all empty. What am I doing wrong