I have this XML file : http://dl.dropbox.com/u/10773282/2011/perf.xml
It h
You should try Linq to XML... Quite easy to use:
var xml = XDocument.Load(filename); var res = from p in xml.Root.Elements("Class").Elements("ClassKeyName") select p.Value;