コード例 #1
0
 public BinaryOperator(string Operator, Expression LeftOperand, Expression RightOperand)
 {
     this.Operator = Operator;
     this.LeftOperand = LeftOperand;
     this.RightOperand = RightOperand;
 }
コード例 #2
0
 public If(Expression Condition, Expression Then)
 {
     this.Condition = Condition;
     this.Then = Then;
 }
コード例 #3
0
 public While(Expression Condition, Expression Body)
 {
     this.Condition = Condition;
     this.Body = Body;
 }
コード例 #4
0
 public If(Expression Condition, Expression Then, Expression Else)
 {
     this.Condition = Condition;
     this.Then = Then;
     this.Else = Else;
 }