I’m writing a WPF application with C# as the code behind and I want to give the users the option to change certain settings in my application. Is there a standard for storing settings within an application that will be read and written to constantly?
Share
Despite the fact that the
app.configfile can be written to (usingConfigurationManager.OpenExeConfigurationto open for writing), the usual practice is to store read-only settings in there.It’s easy to write a simple settings class: