我有一个类似T对象的接口,如此
public interface IService<T>
我有一堆这些接口与所有不同类型的T.如何将这些接口添加到某种列表中,遍历列表并调用接口使用的常用方法.有任何想法吗?有替代方法吗?
解决方法
如果方法很常见,那么可能它不依赖于T,所以你应该能够做到:
interface IService { void TheMethod(); } interface IService<T> : IService { // other stuff }
然后有一个List< IService>,只是:
foreach(var svc in list) svc.TheMethod();