ABT.BinaryOp.BinaryOp C# (CSharp) Method

BinaryOp() protected method

protected BinaryOp ( Expr left, Expr right ) : System
left Expr
right Expr
return System
        protected BinaryOp(Expr left, Expr right) {
            this.Left = left;
            this.Right = right;
        }