(我的问题类似于this one,但代码略有不同,解决方案对我不起作用)
我正在尝试将设置更改保存到app.config
:
Dim config As System.Configuration.Configuration = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None)
config.AppSettings.Settings("HistoryRootDirectoryPath").Value = p_historySavingPath
config.Save(ConfigurationSaveMode.Modified)
ConfigurationManager.RefreshSection("appSettings")
没有任何内容既不保存在bin文件夹中的exe.config
文件中,也不保存到实际的app.config
文件中。我做错了什么?
答案 0 :(得分:5)