views:

910

answers:

2

Hi all,

What is the best method to parse XML in ASP.Net 3.5 ( C#)?

Thanks in advance.

+6  A: 

See Reading XML documents using LINQ to XML and XML Made Easy with LINQ to XML

ArsenMkrt
+1 for beating me to it.
klabranche
+1  A: 

With Linq to XML, I can do in one line what would have taken 10 in with System.XML. Granted it is a longer line.

Matt Wrock