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

Item() 공개 메소드

Returns the indicated item from the underlying collection.
public Item ( int index ) : XmlNode
index int The position of the required item.
리턴 System.Xml.XmlNode
        public override XmlNode Item(int index)
        {
            return (nodes [index] as XmlNode);
        }