I am looking for a way to store a key-value pair in the application settings. From what I have found, key-value pair dictionaries are not serializable, and therefore cannot be stored in the application settings.
Currently I have tried all sorts of dictionaries and collections and all of them work, until I restart the application, then all the settings are gone.
Somewhere I read that a ListDictionary is serializable, but I still have not been able to get that to work. If someone could give me some VB.net examples of how to get this to work using the Application Settings, that would be great!
Thanks!