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

this() 공개 메소드

public this ( int index ) : QilNode
index int
리턴 QilNode
        public override QilNode this[int index] {
            get { if (index != 0) throw new IndexOutOfRangeException(); return this.child; }
            set { if (index != 0) throw new IndexOutOfRangeException(); this.child = value; }
        }