There is no such thing as Func<T1,T2,T3,T4,T5,TResult>. It reaches 4 parameters (i.e. 5 type parameters, including one for the return value):
Func<T>
Func<T1, TResult>
Func<T1, T2, TResult>
Func<T1, T2, T3, TResult>
Func<T1, T2, T3, T4, TResult>
SpinalTap<T1, T2, T3, T4, T5, T6, T7, T8, T9, T10, T11, TResult>
You can make yourself known, of course:
public delegate TResult Func<T1, T2, T3, T4, T5, TResult>
(T1 arg1, T2 arg2, T3 arg3, T4 arg4, T5 arg5);
However, at this point I would think very carefully about whether you can encapsulate some of these parameters together. Are they completely unrelated?