通过接口方式直接反射其接口类

            加载DLL

             Assembly controlAssembly = Assembly.LoadFrom(DLLName);
            获取加载对象的类型

             Type controlType = controlAssembly.GetType(ClassName);

            加类型对象强制转换

            _isoAdapter = (IRFIDISO180006BControlAdapter)Activator.CreateInstance(controlType);

转自:http://zhouweigang01.blog.163.com/blog/static/9340907200782593224238/

原文地址:https://www.cnblogs.com/zhangpengshou/p/1699878.html