AST.BinaryOp.BinaryOp C# (CSharp) Метод

BinaryOp() защищенный Метод

protected BinaryOp ( Expr left, Expr right ) : System
left Expr
right Expr
Результат System
        protected BinaryOp(Expr left, Expr right) {
            this.Left = left;
            this.Right = right;
        }
        public Expr Left { get; }
BinaryOp