Closed
Description
This works:
subcommand.Handler = CommandHandler.Create((int p1, int p2, int p3, ... int p7) => ...
This doesn't:
subcommand.Handler = CommandHandler.Create((int p1, int p2, int p3, ... int p8) => ...
Is it reasonable to ask to keep going a few more parameters since Func<> and Action<> support more?