.NET: Load two version of the same DLL

前端 未结 3 1702
我在风中等你
我在风中等你 2020-12-19 01:35

I need to load two versions of the same DLL in order to compare their outputs. I assume that I can use AppDomains for this, but I need some guidence.

3条回答
  •  星月不相逢
    2020-12-19 02:17

    Ok, it was actually a lot easier than I imagined.

        m_Assembly1 = Reflection.Assembly.LoadFile(IO.Path.Combine(System.Environment.CurrentDirectory, "Old Version\Some.dll"))
        m_Assembly2 = Reflection.Assembly.LoadFile(IO.Path.Combine(System.Environment.CurrentDirectory, "New Version\Some.dll"))
    
        Console.WriteLine("Old Version: " & m_Assembly1.GetName.Version.ToString)
        Console.WriteLine("New Version: " & m_Assembly2.GetName.Version.ToString)
    
        m_OldObject = m_Assembly1.CreateInstance("FullClassName")
        m_NewObject = m_Assembly2.CreateInstance("FullClassName")
    

    From here on out I used late binding and/or reflection to run my tests.

提交回复
热议问题