I am using something like the following to load DLL's in my C# app.
foreach (String s in Directory.GetFiles(".", "*.dll"))
foreach (Type t in Assembly.LoadFrom(s).GetTypes())
But it does not apply the App.config settings for those binaries. Is there a programatic way to load these settings?