string _path = @"C:/Test.xml";

XmlDocument Document = new XmlDocument();
Document.Load(_path);

XmlNodeList xmlNodeList = Document.SelectNodes("TestList");

 

+ Recent posts