delete node

Using XmlDocument class you first get the node either from a ChildNodes collection or from a SelectSingleNode/SelectNodes statement, then use RemoveChild method to remove it from its parent.
 
Back
Top