|
Wednesday, 01 February 2012 04:28 |
Following code will give you the XML representation of the data stored in the DataSet.
DataSet mydataSet = new DataSet();
DataTable table = dataSet.Tables.Add("Items");
mytable.Columns.Add("studentid", typeof(int));
mytable.Columns.Add("name", typeof(string));
mytable.Rows.Add(1,'mac');
mytable.Rows.Add(2,'jac');
mydataSet.GetXml()
 Read more: |