Exemplo n.º 1
0
 public Expression(IStatment statment, T left, T right)
     : this(statment, new Expression <T>(left), new Expression <T>(right))
 {
 }
Exemplo n.º 2
0
 public Expression(IStatment statment, Expression <T> left, Expression <T> right)
 {
     Statment = statment;
     Left     = left;
     Right    = right;
 }