I currently have this method header:
public virtual void SetupGrid<T>() where T : class, new()
{
}
I want to pass in another anonymous class, I guess something like this:
public virtual void SetupGrid<T><T2>() where T,T2 : class, new()
{
}
How can I do this?