When overridden in a derived class, saves all the child nodes of the node to the specified XmlWriter. : XML Node « XML « C# / C Sharp
- C# / C Sharp
- XML
- XML Node
When overridden in a derived class, saves all the child nodes of the node to the specified XmlWriter.
using System;
using System.IO;
using System.Xml;
public class Sample {
public static void Main() {
XmlDocument doc = new XmlDocument();
doc.LoadXml("<book xmlns:bk='urn:samples' bk:ISBN='1-111111-57-5'>" +
"<title>C#</title>" +
"</book>");
XmlNode root = doc.FirstChild;
XmlTextWriter writer = new XmlTextWriter(Console.Out);
writer.Formatting = Formatting.Indented;
root.WriteContentTo(writer);
}
}
Related examples in the same category