System.Xml.Xsl.Qil.QilUnary.this C# (CSharp) Méthode

this() public méthode

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