DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Get Xml From Dataset.
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()




