Dec 10, 2012

Ways to Parse XML in C#



Sources:
http://www.aspfree.com/c/a/C-Sharp/5-Ways-to-Parse-XML-in-C/
http://www.drdobbs.com/windows/parsing-xml-files-in-net-using-c/184416669

Ways suggested for Xml Parsing:
  •     Using XmlTextReader
  •     Using XDocument (LINQ to XML)
  •     Using the XmlReader
  •     Using the XmlDocument
  •     Using Dataset and DataTable Object
  •     Using XPathDocument
  •     Using XmlSerializer

============================================================