I\'m trying to load modules into my application dynamically, but I want to specify separate app.config files for each one.
Say I have following app.config setting for ma
It may work if you change the code little bit:
public string Name { get { Configuration conf = ConfigurationManager.OpenExeConfiguration("library.dll"); return conf.AppSettings.Settings["House"].Value; } }