Acme.Northwind.Install.XmlHelper.RemoveElement C# (CSharp) Method

RemoveElement() public static method

Removes an XML node
public static RemoveElement ( this element ) : void
element this
return void
		public static void RemoveElement(this XmlElement element)
		{
			XmlNode parentNode = element.ParentNode;
			parentNode.RemoveChild(element);
		}

Same methods

XmlHelper::RemoveElement ( this document, string xpath ) : void