码迷,mamicode.com
首页 > Windows程序 > 详细

C#获取C# DLL中的指定接口的所有实现实例 - qq_19759475的博客 - CSDN博客

时间:2019-05-17 10:49:57      阅读:278      评论:0      收藏:0      [点我收藏+]

标签:obj   edit   post   release   ati   mod   temp   csdn博客   sem   

原文:C#获取C# DLL中的指定接口的所有实现实例 - qq_19759475的博客 - CSDN博客

       

 public static List<T> CreateTarInterface<T>(string dllpath)

        {

            List<T> rs = new List<T>();


            var dlllll = Assembly.Load(dllpath);


            foreach (var item in dlllll.GetTypes())

            {


                object objType = dlllll.CreateInstance(item.Namespace + "." + item.Name);


                if (typeof(T).IsAssignableFrom(objType.GetType()))


                    rs.Add((T)objType);

            }


            return rs;


        }

C#获取C# DLL中的指定接口的所有实现实例 - qq_19759475的博客 - CSDN博客

标签:obj   edit   post   release   ati   mod   temp   csdn博客   sem   

原文地址:https://www.cnblogs.com/lonelyxmas/p/10880061.html

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