c# – 检测类型是否实现ICollection
发布时间:2020-12-15 18:27:33 所属栏目:百科 来源:网络整理
导读:参见英文答案 How to determine if a type implements a specific generic interface type11个 我试图检查一个类型是否实现了通用的ICollection T interface,因为这是我的任何泛型集合的基本接口. 以下代码不起作用 GetType(ICollection(Of)).IsAssignableFr
参见英文答案 >
How to determine if a type implements a specific generic interface type11个
我试图检查一个类型是否实现了通用的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<>)); (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |