I want to store some application settings (eg database server etc). If these settings do not work, or the file is not present, I want to provide a UI to enter the values and save the file.
I have seen many different suggestions including configurationmanager and using the settings properties (in express) and referencing them using
| | properties.settings.default.SQLDatabaseName |
or whatever. I can read the values this way no problem, but cannot save them. I understand that if the settings scope is set to application, they are read-only. User scope settings are read-write. This was confirmed by testing.
So, if I want Read/write settings, what is the best method?
Thanks