c# 动态加载dll文件
Posted z45281625
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c# 动态加载dll文件相关的知识,希望对你有一定的参考价值。
/// <summary> /// 动态加载DLL /// </summary> /// <param name="lpFileName">DLL路径</param> /// <param name="Namespace">命名空间</param> /// <param name="ClassName">类名</param> /// <param name="lpProcName">公共函数名</param> /// <param name="ObjArray_Parameter"></param> /// <returns></returns> 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文件的主要内容,如果未能解决你的问题,请参考以下文章