.NET: Load two version of the same DLL

前提是你 提交于 2019-12-18 05:49:22

问题


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.


回答1:


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.




回答2:


Check out Activator.CreateInstance() on MSDN. Code samples within.

http://msdn.microsoft.com/en-us/library/ms224132.aspx




回答3:


Here is a guide to do that:

extern alias oldVer;
extern alias newVer;

and when you compile:

csc /r:oldVer=Somepath\ClassLibrary.dll /r:newVer=AnotherPath\ClassLibrary.dll program.cs

or in Visual Studio change the "aliases" field in the property tab of your project references



来源:https://stackoverflow.com/questions/2016990/net-load-two-version-of-the-same-dll

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!