ABT.DoWhileStmt.DoWhileStmt C# (CSharp) Method

DoWhileStmt() public method

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