Assembly.LoadFile或LoadFrom 后文件不释放

Error Unable to copy file "obj\Debug\xxx.dll" to "bin\Debug\xxx.dll". The process cannot access the file 'bin\Debug\xxx.dll' because it is being used by another process. 

 

发现xxx.dll在另一程序中用Assembly.LoadFile("xxx.dll")加载过。如果不关闭这个程序,在vs下编译就会有问题。究其原因是loadfile后没有释放,导致vs覆盖文件失败。

解决方案:

1.用AppDomain新建一个应用程序域。具体的百度下就可以。个人感觉比较麻烦。

2.绕过此方法。代码如下:

using System.Reflection;
using System.IO;
MemoryStream memStream;
using(FileStream stream = new FileStream(@"C:\MyAssembly.dll", FileMode.Open))
{
    using (memStream = new MemoryStream())
    {
        int res;
        byte[] b = new byte[4096];
        while ((res = stream.Read(b, 0, b.Length)) > 0)
        {
            memStream.Write(b, 0, b.Length);
        }
    }
}
Assembly asm = Assembly.Load(memStream.ToArray());
MessageBox.Show(asm.FullName);

 
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值