HandCoded.Xml.MutableNodeList.RemoveAll C# (CSharp) Method

RemoveAll() public method

Removes each of the XmlNode instances in the given XmlNodeList from the collection held within the MutableNodeList.
public RemoveAll ( XmlNodeList list ) : void
list System.Xml.XmlNodeList The of instance to remove.
return void
        public void RemoveAll(XmlNodeList list)
        {
            foreach (XmlNode node in list)
                nodes.Remove (node);
        }