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);
        }