public static ArithmeticExpression Arithmetic(Expression firstOperand, ArithmeticOperator operatorr, Expression secondOperand) { return(new ArithmeticExpression(operatorr, firstOperand, secondOperand)); }
public ArithmeticExpression(ArithmeticOperator @operator, Expression firstOperand, Expression secondOperand) { Operator = @operator; FirstOperand = firstOperand; SecondOperand = secondOperand; }