标签: c# reflection
有人能告诉我如何使用C#反射找到类实现的所有接口吗?
像查找实现特定接口的所有类一样
if(type.getInterface(typeof(IAuto)) != null) { console.writeline(type.name.tostring()); }
答案 0 :(得分:9)
var interfaces = typeof(Classname).GetInterfaces();