I have created a new user setting called TheList
as a System.Collections.Specialized.StringDictionary
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
If My.Settings.TheList Is Nothing Then
My.Settings.TheList = New System.Collections.Specialized.StringDictionary
End If
My.Settings.TheList.Add("Not", "Working")
My.Settings.Save()
End Sub
However, for some reason My.Settings.TheList
is actually always "nothing" and my dictionary entry is never saved.