示例#1
0
 public Expression Or(Expression other)
 {
     return new LogicOperatorOr(this, other);
 }
示例#2
0
 public Expression And(Expression other)
 {
     return new LogicOperatorAnd(this, other);
 }