AST.WhileStmt.WhileStmt C# (CSharp) Метод

WhileStmt() публичный Метод

public WhileStmt ( Expr cond, Stmt body ) : System
cond Expr
body Stmt
Результат System
        public WhileStmt(Expr cond, Stmt body) {
            this.Cond = cond;
            this.Body = body;
        }