I've got an interface with type T objects like so
public interface IService<T>
I've got a bunch of these interfaces with all different type T's. How can I add these interfaces into a List of some sort, iterate through the list and call a common method used by the interface. Any ideas? Is there an alternative approach?
If I add it to a list, I just can't see a way of casting the type T correctly.