I want to know how to load assemblies which are outside the Appbase and Appdomain.
My problem is that I have a list of assemblies that are on a shared directory. My
What About MSDN - Assembly Load File
string filePath = "C:\asmPath"; Assembly myAssembly = Assembly.LoadFile(filePath);
You can also define a probe path in your app.config (which I consider a better solution) and having the CLR loading the assemblies on demand. MSDN Probing Path