I'm not necessarily referring to app.configs, but a custom configuration file that would store my program's state whenever a user hits a "save" button.
In my example, it's a UI builder that allows the user to choose which "fields" are to be displayed on the left and right columns in a two-column screen, along with the order of the fields in each column. There's other stuff too, but you get the idea.
The user could open any configuration file they've saved and populate the UI builder appropriately.
I'm thinking this could be stored in an XML file, but I was wondering what sort of suggestions people would have on how to write it out, how to read from it (use LINQ maybe?) and other general approaches, including versioning etc. I'm sure this has come up before and I'd like to hear about best practices. Thanks!
See Question&Answers more detail:os