Beispiel #1
0
 public IfStatement(Expression condition, IEnumerable <Statement> body, ElseStatement @else)
 {
     this.Condition = condition;
     this.Body      = body;
     this.Else      = @else;
 }
Beispiel #2
0
 public ElseIfStatement(Expression condition, IEnumerable <Statement> body, ElseStatement @else) : base(body)
 {
     this.Condition = condition;
     this.Else      = @else;
 }