Reading XML by Dataset
Posted
by Sathish
on Stack Overflow
See other posts from Stack Overflow
or by Sathish
Published on 2010-03-26T04:03:40Z
Indexed on
2010/03/26
4:13 UTC
Read the original article
Hit count: 319
c#
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
© Stack Overflow or respective owner