How do I read and parse an XML file in C#? - Stack Overflow
XmlDocument to read an XML from string or from file. XmlDocument doc = new XmlDocument(); doc.Load("c:\\temp.xml"); or doc.LoadXml("something"); then find a node below it ie like this XmlNode node = doc.DocumentElement.SelectSingleNode ......