How to use .NET configuration files (app.config, settings.settings) to save and restore all application data?

后端 未结 5 1218
灰色年华
灰色年华 2020-12-15 12:24

Although there are a lot of posts about .net config files, I believe that my requirements do not allow for any of the solutions proposed (or I don\'t understand the process

5条回答
  •  攒了一身酷
    2020-12-15 13:00

    It is best practice to NOT write to the app.config but use the settings file for saving user settings that are modified. The app.config and web.config should only be used for read only values.

提交回复
热议问题