Could someone please explain application and user settings, and their differences to me? I've got a C# application that only ONE person will use. There are preferences the user can set within the program, and I implemented these preferences with user-scoped settings. I was under the impression user-scoped settings would be able to be read and written at runtime, which they are. But they are not persisting. Once the application is closed and reopened, poof, there go all the user's settings.
Application settings seem to be a better fit for what I'm doing, except they can't be manipulated at runtime.
So...
Question #1: Are user-scoped settings suppose to persist?
Question #2: Is the difference between user and application scope the fact that application cannot be changed at runtime, but user can?
Question #3: If I can't use settings, or shouldn't in this case, what would alternative suggestions for saving preferences be?
There's some good information here.
Save()
function on them at some point! Usually with Settings.Default.Save()
.