am trying to write value for a key in <appSettings><add key="LidbsdPath" value="" /></appSettings> section of config file from vb.net app, using statement below
System.Configuration.ConfigurationSettings.AppSettings.Set("LidbsdPath", g_strLidbsdPath)
I am getting an error message saying "Collection is read-only"? How can I fix this
System.Configuration.ConfigurationSettings.AppSettings.Set("LidbsdPath", g_strLidbsdPath)
I am getting an error message saying "Collection is read-only"? How can I fix this