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