码迷,mamicode.com
首页 > 其他好文 > 详细

怎么通过反射获取所有继承了某一接口的类

时间:2016-02-17 18:44:10      阅读:166      评论:0      收藏:0      [点我收藏+]

标签:

使用 Linq:

var types = AppDomain.CurrentDomain.GetAssemblies()
.SelectMany(a => a.GetTypes().Where(t => t.GetInterfaces().Contains(typeof(ISecurity))))
.ToArray();

不使用 Linq:

public static IEnumerable<Type> GetType(Type interfaceType)
{
foreach (var assembly in AppDomain.CurrentDomain.GetAssemblies())
{
foreach (var type in assembly.GetTypes())
{
foreach (var t in type.GetInterfaces())
{
if (t == interfaceType)
{
yield return type;
break;
}
}
}
}
}

怎么通过反射获取所有继承了某一接口的类

标签:

原文地址:http://www.cnblogs.com/yelanggu/p/5196156.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!