ABT.IfElseStmt.IfElseStmt C# (CSharp) Method

IfElseStmt() public method

public IfElseStmt ( Expr cond, Stmt trueStmt, Stmt falseStmt ) : System
cond Expr
trueStmt Stmt
falseStmt Stmt
return System
        public IfElseStmt(Expr cond, Stmt trueStmt, Stmt falseStmt) {
            this.Cond = cond;
            this.TrueStmt = trueStmt;
            this.FalseStmt = falseStmt;
        }