c# – 检测类型是否实现ICollection

前端之家收集整理的这篇文章主要介绍了c# – 检测类型是否实现ICollection前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
参见英文答案 > 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<>));
原文链接:https://www.f2er.com/csharp/98554.html

猜你在找的C#相关文章