HandCoded.Xml.MutableNodeList.RemoveAll C# (CSharp) Метод

RemoveAll() публичный Метод

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.
Результат void
        public void RemoveAll(XmlNodeList list)
        {
            foreach (XmlNode node in list)
                nodes.Remove (node);
        }