AST.WhileStmt.Create C# (CSharp) Method

Create() public static method

public static Create ( Expr cond, Stmt body ) : Stmt
cond Expr
body Stmt
return Stmt
        public static Stmt Create(Expr cond, Stmt body) =>
            new WhileStmt(cond, body);