I'm having problems creating a collection of delegate using reflection and generics.
I'm trying to create a delegate collection from Ally methods, whose share a common method signature.
public class Classy
{
public string FirstMethod<out T1, in T2>( string id, Func<T1, int, IEnumerable<T2>> del );
public string
…