I have written the following piece of code that reads through a given xml-file and writes the contents into a data-table. Please do NOT suggest to use LinqToXml as that opti
You can use ReadXML
DataSet ds = new DataSet(); ds.ReadXml(fileNameWithAbsolutePath); return ds.Tables[0];