Esempio n. 1
0
 public static ArithmeticExpression Arithmetic(Expression firstOperand, ArithmeticOperator operatorr, Expression secondOperand)
 {
     return(new ArithmeticExpression(operatorr, firstOperand, secondOperand));
 }
Esempio n. 2
0
 public ArithmeticExpression(ArithmeticOperator @operator, Expression firstOperand, Expression secondOperand)
 {
     Operator      = @operator;
     FirstOperand  = firstOperand;
     SecondOperand = secondOperand;
 }