Ejemplo n.º 1
0
 public Expression Or(Expression other)
 {
     return new LogicOperatorOr(this, other);
 }
Ejemplo n.º 2
0
 public Expression And(Expression other)
 {
     return new LogicOperatorAnd(this, other);
 }