Hi there,
Supposed I have loaded into an current domain an assembly myasm.dll
i.e. Appdomain.CurrentDomain.Load(bytes_of_myasm.dll)
myasm.dll is signed and has a strong name
Now I have a newasm.dll , this dll uses some classes from myasm.dll.
If I am trying to create an instance of a class from newasm I get an
exception that probing is failed for myasm.dll. But myasm.dll is already
loaded in currentdomain (public key is the same and version too!!!).
How can I let .Net to use mydll from current domain instead of start
probing?
Thanks
|