コード例 #1
0
 public IfElseLogicStatement(LogicExpression condition, LogicStatement statement, LogicStatement elseStatement)
 {
     this.Condition = condition;
     this.Statement = statement;
     this.ElseStatement = elseStatement;
 }
コード例 #2
0
 public WhileLogicStatement(LogicExpression condition, LogicStatement statement)
 {
     this.Condition = condition;
     this.Statement = statement;
 }