c#DLL을 동적으로 로드하고 언로드하는 방법

2608 단어
c#에서는 반사를 통해 dll 프로그램 집합을 쉽게 동적으로 불러올 수 있지만, dll에 대한 업데이트가 필요하면 발견할 수 있습니다.net 라이브러리에서 dll 프로그램 집합을 마운트 해제하는 방법을 제공하지 않았습니다.에 있습니다.net에는 응용 프로그램 영역의 개념이 추가되어 있으며, 응용 프로그램 영역은 마운트 해제할 수 있습니다.즉, 동적으로 로드된 dll 프로그램 세트를 업데이트해야 하는 경우 다음과 같은 방법으로 해결할 수 있습니다.
DLL을 동적으로 로드한 다음 제거할 수 있는 새 애플리케이션 도메인을 만듭니다.이 프로그램 영역이 마운트 해제될 때 관련 자원도 회수됩니다.
이렇게 하려면 프로그램의current Domain과 새로 만든 new Domain 사이의 통신을 통해 프로그램 영역의 경계를 통과해야 한다.인터넷에서 어떤 큰 소의 해결 방법을 찾았으니 베껴서 자신에게 남겨 두세요.
 
  
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. 각 스레드마다 Thread를 통해 기본 AppDomain이 있습니다.GetDomain()에서 제공

좋은 웹페이지 즐겨찾기