查找类实现的所有接口

时间:2014-03-04 10:55:30

标签: c# reflection

有人能告诉我如何使用C#反射找到类实现的所有接口吗?

像查找实现特定接口的所有类一样

if(type.getInterface(typeof(IAuto)) != null)
{
   console.writeline(type.name.tostring());
}

1 个答案:

答案 0 :(得分:9)

var interfaces = typeof(Classname).GetInterfaces();