i need to display data in grid-view or list-view form more than one XML files this XML files have the same schema
the second issue this xml files generated Automatically by user i mean if the user open any request on the system the XML file created on specific folder so
DataSet ds1 = new DataSet();
ds1.ReadXml(@"c:\temp\test.xml");
DataSet ds2 = new DataSet();
ds2.ReadXml(@"c:\temp\test.xml");
ds2.Tables["Product"].Merge(ds1.Tables["Product"]);
dataGridView1.DataSource = ds2.Tables["Product"];