ABT.IfStmt.IfStmt C# (CSharp) 메소드

IfStmt() 공개 메소드

public IfStmt ( Expr cond, Stmt stmt ) : System
cond Expr
stmt Stmt
리턴 System
        public IfStmt(Expr cond, Stmt stmt) {
            this.Cond = cond;
            this.Stmt = stmt;
        }