参见英文答案 >
How to determine if a type implements a specific generic interface type11个
我试图检查一个类型是否实现了通用的ICollection< T> interface,因为这是我的任何泛型集合的基本接口.
我试图检查一个类型是否实现了通用的ICollection< T> interface,因为这是我的任何泛型集合的基本接口.
以下代码不起作用
GetType(ICollection(Of)).IsAssignableFrom( objValue.GetType().GetGenericTypeDefinition())
检测类型是否实现通用接口的好方法是什么?
解决方法
CustomCollection c = new CustomCollection(); bool implementICollection = c.GetType().GetInterfaces() .Any(x => x.IsGenericType && x.GetGenericTypeDefinition() == typeof(ICollection<>));