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

WhileStmt() 공개 메소드

public WhileStmt ( Expr cond, Stmt body ) : System
cond Expr
body Stmt
리턴 System
        public WhileStmt(Expr cond, Stmt body) {
            if (!cond.Type.IsScalar) {
                throw new InvalidProgramException();
            }
            this.Cond = cond;
            this.Body = body;
        }