System.Xml.Xsl.Qil.QilList.this C# (CSharp) 메소드

this() 공개 메소드

public this ( int index ) : QilNode
index int
리턴 QilNode
        public override QilNode this[int index] {
            get {
                if (index >= 0 && index < this.count)
                    return this.members[index];

                throw new IndexOutOfRangeException();
            }
            set {
                if (index >= 0 && index < this.count)
                    this.members[index] = value;
                else
                    throw new IndexOutOfRangeException();

                // Invalidate XmlType
                this.xmlType = null;
            }
        }