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;
        }