I\'m new to XML and am having a problem understanding how to implement a solution of deleting certain elements within the tree. I\'ve searched for a solution and have tried num
If you have found the node to remove use this call:
node.ParentNode.RemoveChild(node);
That will bring you back to the parent and then remove the entire node(including the tags)