tags:

views:

33

answers:

1

I am trying to find some working examples to learn the wonders on Dataset with XML. Im using this example of the xml data. I want to search through all the CD nodes for the TITLE value.

DataSet dsXml = new DataSet();
dsXml.ReadXml(msXml);

+1  A: 

look at using linq2xml. you could also use linq to "query" the dataset. http://msdn.microsoft.com/en-us/vbasic/bb688086.aspx

czuroski