AST.FuncCall.Create C# (CSharp) Method

Create() public static method

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