Mega Code Archive

 
Categories / C# by API / System Xml
 

New XmlTextReader(String fileName)

using System; using System.IO; using System.Xml; class MainClass {   static void Main(string[] args)   {     XmlTextReader reader = new XmlTextReader("Sample.xml");     // Read the File     while (reader.Read())     {            }     if (reader != null)       reader.Close();   } }