Csharp/C Sharp by API/System.Xml/XmlNode
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);
}
}