using System;
using System.Xml;
class MainClass
{
static void Main(string[] args)
{
XmlTextWriter writer = new XmlTextWriter("C:\\xmlWriterTest.xml", null);
writer.WriteStartDocument();
// Write comments
writer.WriteComment("This program uses XmlTextWriter.");
// Ends the document.
writer.WriteEndDocument();
writer.Close();
return;
}
}
|