I'm trying to design a custom generic collection editor in Winforms. I'm getting into a bit of a mess with casting the received class type onto a list of objects. I'm not very good with generics, so tried this via List<object>. See my code here:
Gives me the attached error (precis: Unable to cast object of type List<SupportApplications> to type List<object>
I'm sure this may be a job for List<T> or something, but I've never really got my head around generics. I know this is me getting some basic principles wrong. Can anyone help with example code?