HandCoded.Xml.MutableNodeList.Remove C# (CSharp) 메소드

Remove() 공개 메소드

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