I'm writing a client for multiple websites. For these websites, users should be able to save multiple settings, like username, favorite category etc. I want these settings to be saved locally. At first i thought i'd use the usual Properties.Settings, but i want these strings to be in a database of some sort, to keep them ordered. Like so:
Website, User, UserCat, Proxy
Those are all the columns i need, proxy is optional. What is the best way to go about this? I first thought of stringcollections, but the coding is messy and it just doesn't seem like the right way to go.
When my application starts, a user can select one website, and the app will load the user, usercat and the optional proxy belonging to that website. Whats the best way to handle this? Thanks!