Suppose that you have the following situation in .NET (C#):
namespace MyDll
{
public class MyClass
{
public string GetValue()
{
return "wrong value";
}
}
}
this code goes compiled into a dll say, MyDll.Dll.
Then you have an application called MyApplication.exe that, using MyDll.dll as reference, creates an instance of the class MyClass and calls the method GetValue:
MyClass instance = new MyClass();
instance.GetValue();
Once you realize that the current implementation of MyClass.GetValue() is wrong is there any way to fix the method MyClass.GetValue() like this
namespace MyDll
{
public class MyClass
{
public string GetValue()
{
return "correct value";
}
}
}
and HOT swapping the resulting MyDll.dll, without restarting MyApplication.exe???
All solutions proposed in stackoverflow and in google fail to work because, even if MyDll.dll is loaded on a new AppDomain created for that purpose, when I unload calling
AppDomain.Unload(anoterAppDomainJustForMyDll);
it returns without error, but if I try to overwrite the original MyDll.dll with the corrected one (while MyApplication.exe is still running) I get an error "impossible to overwrite because the dll in use by another process"....