标签:from 接口 back 主程 ola reac family 继承 类继承
//加载组件DLL
Assembly ab = Assembly.LoadFrom(file);
Type[] types = ab.GetTypes();
foreach (Type t in types)
{
//如果某些类实现了预定义的插件接口,则认为该类适配与主程序(是主程序的插件)
if (t.GetInterface("预定义的插件接口")!=null)
{
????????object o = ab.CreateInstance(t.FullName);//创建该类实例
????????MethodInfo method = t.GetMethod("方法名");//获得该类某方法
????????object returnValue = method.Invoke(实例名, 函数参数)//调用该方法
}
}
标签:from 接口 back 主程 ola reac family 继承 类继承
原文地址:https://www.cnblogs.com/AlMirai/p/12546910.html