System.Xml.XPathNodeList.Item C# (CSharp) Méthode

Item() public méthode

public Item ( int index ) : XmlNode
index int
Résultat XmlNode
        public override XmlNode Item(int index) {
            if (list.Count <= index) {
                ReadUntil(index);
            }
            if (index < 0 || list.Count <= index) {
                return null;
            }
            return list[index];
        }