Programatically adding sections to the configuration read from app.config - Stack Overflow most recent 30 from stackoverflow.com 2009-11-29T18:22:37Z http://stackoverflow.com/feeds/question/618623 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/618623/programatically-adding-sections-to-the-configuration-read-from-app-config 0 Programatically adding sections to the configuration read from app.config Joda 2009-03-06T12:06:08Z 2009-03-06T12:18:07Z <p>I am working on a component/assembly that is to be distributed to other developers and included in their systems.</p> <p>In order to minimize the work they have to do, all configuration is done in a seperate file (my.config).</p> <p>My current problem is that a library I am using requires configuration to be added to the app.config file of the application. I have no way of modifying this, so that it reads my custom config file.</p> <p>Is there any way to add a section/setting to the current config, so that it behaves as if it was read from the app.config?</p> <p>I can add to the app.config, so it must work at runtime only.</p> <p>Thanks, Jonas</p> http://stackoverflow.com/questions/618623/programatically-adding-sections-to-the-configuration-read-from-app-config/618639#618639 2 Answer by Assaf for Programatically adding sections to the configuration read from app.config Assaf 2009-03-06T12:11:49Z 2009-03-06T12:11:49Z <p>I don't think you can update the configuration without changing the underlying file. It's a read-only thing.</p>