using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Xml; namespace XMLReader { class XMLReader { static void Main(string[] args) { string xmlFilePath = "school.xml"; XmlDocument doc = new XmlDocument(); doc.Load(xmlFilePath);