博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
c#动态加载卸载DLL的方法
阅读量:5038 次
发布时间:2019-06-12

本文共 2028 字,大约阅读时间需要 6 分钟。

这篇文章介绍了c#动态加载卸载DLL的方法,有需要的朋友可以参考一下

c#中通过反射可以方便的动态加载dll程序集,但是如果你需要对dll进行更新,却发现.net类库没有提供卸载dll程序集的方法。在.net 中,加入了应用程序域的概念,应用程序域是可以卸载的。也就是说,如果需要对动态加载的dll程序集进行更新,可以通过以下方法解决:

新建一个应用程序域,在该应用程序域中动态加载DLL,然后可以卸载掉该应用程序域。该应用程序域被卸载的时候,相关资源也会被回收。

要想这样实现,就要让你程序的currentDomain和新建的newDomain之间进行通信,穿过应用程序域的边界。从网上找到了某大牛的解决方法,抄下来留给自己看吧: 

using System; using System.Collections.Generic; using System.Text; using System.Threading; using System.Reflection; namespace UnloadDll {     class Program     {         static void Main(string[] args)         {             string callingDomainName = AppDomain.CurrentDomain.FriendlyName;//Thread.GetDomain().FriendlyName;             Console.WriteLine(callingDomainName);             AppDomain ad = AppDomain.CreateDomain("DLL Unload test");             ProxyObject obj = (ProxyObject)ad.CreateInstanceFromAndUnwrap(@"UnloadDll.exe", "UnloadDll.ProxyObject");             obj.LoadAssembly();             obj.Invoke("TestDll.Class1", "Test", "It's a test");             AppDomain.Unload(ad);             obj = null;             Console.ReadLine();         }     }     class ProxyObject : MarshalByRefObject     {         Assembly assembly = null;         public void LoadAssembly()         {             assembly = Assembly.LoadFile(@"TestDLL.dll");                    }         public bool Invoke(string fullClassName, string methodName, params Object[] args)         {             if(assembly == null)                 return false;             Type tp = assembly.GetType(fullClassName);             if (tp == null)                 return false;             MethodInfo method = tp.GetMethod(methodName);             if (method == null)                 return false;             Object obj = Activator.CreateInstance(tp);             method.Invoke(obj, args);             return true;                    }     } }

注意:

 

1. 要想让一个对象能够穿过AppDomain边界,必须要继承MarshalByRefObject类,否则无法被其他AppDomain使用。

2. 每个线程都有一个默认的AppDomain,可以通过Thread.GetDomain()来得到

您可能感兴趣的文章:

引文链接:

转载于:https://www.cnblogs.com/rainbow70626/p/4722638.html

你可能感兴趣的文章
上周热点回顾(10.20-10.26)
查看>>
C#正则表达式引发的CPU跑高问题以及解决方法
查看>>
云计算之路-阿里云上:“黑色30秒”走了,“黑色1秒”来了,真相也许大白了...
查看>>
APScheduler调度器
查看>>
设计模式——原型模式
查看>>
【jQuery UI 1.8 The User Interface Library for jQuery】.学习笔记.1.CSS框架和其他功能
查看>>
如何一个pdf文件拆分为若干个pdf文件
查看>>
web.xml中listener、 filter、servlet 加载顺序及其详解
查看>>
前端chrome浏览器调试总结
查看>>
获取手机验证码修改
查看>>
数据库连接
查看>>
python中数据的变量和字符串的常用使用方法
查看>>
等价类划分进阶篇
查看>>
delphi.指针.PChar
查看>>
Objective - C基础: 第四天 - 10.SEL类型的基本认识
查看>>
java 字符串转json,json转对象等等...
查看>>
极客前端部分题目收集【索引】
查看>>
第四天 selenium的安装及使用
查看>>
关于js的设计模式(简单工厂模式,构造函数模式,原型模式,混合模式,动态模式)...
查看>>
KMPnext数组循环节理解 HDU1358
查看>>