System.Xml.Xsl.Qil.QilUnary.this C# (CSharp) Method

this() public method

public this ( int index ) : QilNode
index int
return 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; }
        }