What's the best way to store data in a C# application?
I plan to have the user to set the database connection and output folder. But I need my application to remember those settings the next time the user starts the application.
I was thinking saving the data to an XML file then just extract the data from the XML file each time the application starts. Is there a better way to do this? Perhaps Visual Studios' application settings?
Visual Studio -> Project -> (project name) Properties -> Settings tab
If it's the latter, how would I go about this?