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