CSharp examples for System.Xml:XML Element
Create Child Element
using System.Xml; using System.Text; using System.Linq; using System.Collections.Generic; using System;// w w w .jav a2 s. c om public class Main{ public static XmlElement CreateChildElement(this XmlElement parent, string elemName) { XmlElement element = parent.OwnerDocument.CreateElement(elemName); parent.AppendChild(element); return element; } }