I have a C# .NET Console application exe with an app.config specifying a handful of ApplicationSettings used as parameters.
I have an additional separate (Windows Forms) exe (residing in the same directory) to allow the ApplicationSettings used by the first exe to be modified by the user.
What it the cleanest way to go about modifying the first exe's app.config from the second exe?
Thanks.