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

DoWhileStmt() 공개 메소드

public DoWhileStmt ( Stmt body, Expr cond ) : System
body Stmt
cond Expr
리턴 System
        public DoWhileStmt(Stmt body, Expr cond) {
            this.Body = body;
            this.Cond = cond;
        }