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

Remove() public method

Removes in indicated XmlNode from the collection held within the MutableNodeList.
public Remove ( XmlNode node ) : void
node System.Xml.XmlNode The to be removed.
return void
        public void Remove(XmlNode node)
        {
            nodes.Remove (node);
        }