Read and write XML document : XmlTextReader « XML « C# / CSharp Tutorial






using System;
using System.Collections;
using System.Data;
using System.Xml;


class MainClass{
  public static void Main(){
    XmlDocument doc = new XmlDocument();
    // read 
    doc.Load( "Sample.xml" );
    Console.WriteLine(doc.OuterXml);

    // write
    XmlTextWriter tw = new XmlTextWriter( "testOut.xml", null );
  tw.Formatting = Formatting.Indented;
  tw.Indentation = 4;
  doc.Save( tw );
  tw.Close();
        
  }

}
<
name>NewtongravityCuriera
dioactivitySteve Irwinthey bite!








30.7.XmlTextReader
30.7.1.Create XmlTextReader from StringReader
30.7.2.Read and write XML document
30.7.3.XmlTextWriter: Write Comment
30.7.4.XmlTextWriter: write start element
30.7.5.XmlTextWriter: write string
30.7.6.Copy one xml document as a sub element into another xml document
30.7.7.Use XmlTextReader to load xml document from file
30.7.8.Load xml document in XmlTextReader to XmlDocument
30.7.9.XmlTextReader: read and move
30.7.10.XmlTextReader: Skip