Microsoft.JScript.ASTList.this C# (CSharp) Method

this() private method

private this ( int i ) : AST
i int
return AST
      internal AST this[int i]{
        get{
          return this.list[i];
        }
        set{
          this.list[i] = value;
        }
      }