tags:

views:

27

answers:

1

Hi,I have a DataSet with some Datatables and I am saving this DataSet as XML file (C#) ..is there any way to load only some parts of this XML file into the DataSet when I start my program instead of loading all the file ?

+2  A: 

Position your XmlReader on the start of the fragment you want, then call DataTable.ReadXml.

John Saunders