I need to change a .NET app's configuration at runtime (to be precise, at startup).
The app doesn't have write access to the place where the app.config (or web.config) is saved.
The configuration section I need to add is third-party (by Oracle), so I cannot just change the way the configuration works.
Also, I don't have a custom ConfigurationSectionHandler
, because the config section is by Oracle, and apparently they don't provide a config section handler class to read from the section.
Is that possible?