Mega Code Archive

 
Categories / C# by API / System Xml
 

XmlNode RemoveAll()

using System; using System.Xml; class MainClass {   static void Main(string[] args)   {     XmlDocument doc = new XmlDocument();     doc.LoadXml("<R> Value </R>");     XmlNode root = doc.DocumentElement;     doc.Save(Console.Out);     root.RemoveAll();     doc.Save(Console.Out);   } }