开发者

Getting all types from an assembly derived from a base class

开发者 https://www.devze.com 2022-12-23 18:44 出处:网络
I am trying to examine the contents of an assembly and find all classes in it that are directly or indirectly derived from Windows.Forms.UserControl.

I am trying to examine the contents of an assembly and find all classes in it that are directly or indirectly derived from Windows.Forms.UserControl.

I am doing this:

Assembly dll = Assembly.LoadFrom(filename);
var types = dll.GetTypes().Where(x => x.BaseType == typeof(UserControl));

But it is giving an empty list because none of the classes directly extend UserControl. I don't know 开发者_Go百科enough about reflection to do it quickly, and I'd rather not write a recursive function if I don't have to.


You should use Type.IsSubclassOf this instead:

var types = dll.GetTypes().Where(x => x.IsSubclassOf(typeof(UserControl)));


You can use :

    var assembly = Assembly.Load(filename);
    var types = assembly.GetTypes().Where((type) => typeof(UserControl).IsAssignableFrom(type));
0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号