c# 动态加载dll文件
标签:bsp for get reac lse 文件 cee string 函数
///
/// 动态加载DLL
///
/// DLL路径
/// 命名空间
/// 类名
/// 公共函数名
///
///
private object Invoke(string lpFileName, string Namespace, string ClassName, string lpProcName, object[] ObjArray_Parameter)
{
try
{ // 载入程序集
Assembly MyAssembly = Assembly.LoadFrom(lpFileName);
Type[] type = MyAssembly.GetTypes();
foreach (Type t in type)
{// 查找要调用的命名空间及类
if (t.Namespace == Namespace && t.Name == ClassName)
{// 查找要调用的方法并进行调用
MethodInfo m = t.GetMethod(lpProcName);
if (m != null)
{
object o = Activator.CreateInstance(t);
return m.Invoke(o, ObjArray_Parameter);
}
else MessageBox.Show(" 装载出错 !");
}
}
}
catch (System.NullReferenceException e)
{
MessageBox.Show(e.Message);
}
return (object)0;
}
c# 动态加载dll文件
标签:bsp for get reac lse 文件 cee string 函数
原文地址:https://www.cnblogs.com/z45281625/p/10623716.html
评论