AST.FuncCall.Create C# (CSharp) Méthode

Create() public static méthode

public static Create ( Expr func, ImmutableList args ) : Expr
func Expr
args ImmutableList
Résultat Expr
        public static Expr Create(Expr func, ImmutableList<Expr> args) =>
            new FuncCall(func, args);