Reading XML by Dataset
- by Sathish
I using a dataset to read an xml file as shown below
DataSet ds = new DataSet();
ds.ReadXml("C:\test.xml");
test.xml contains
OMID
Yes
AssumptOMID
int
10
ClientName
Yes
AssumptClient
string
50
OppName
Yes
AssumptProjectName
string
50
now i want to read fieldInfo in one dataset/datatable and settings in another dataset/datatable
Please help me with the code