How to read data from XML file in C#.Net
ReadXml
DataSet ds = new DataSet(); System.IO.FileStream fs = new System.IO.FileStream("XMlFileName", System.IO.FileMode.Open); ds.ReadXml(fs);
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)