If in the project execution folder / bin I have the following files:
MyDynamicLibrary.dll MyDynamicLibrary.dll.config
and in my application I have the following:
Assembly assembly = System.Reflection.Assembly.Load("MyDynamicLibrary");
If I call a method from this assembly object, has it already loaded the information in MyDnamicLibrary.dll.config ? If not, is there a way to load it so that the DLL functions correctly? Or do I need to add information in MyDynamicLibrary.dll.config to my .config application file?
source share