我想在配置文件中保存一些设置以供将来使用。我正在尝试使用我在所有教程中看到的常规代码 -
Configuration config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
config.AppSettings.Settings["username"].Value = m_strUserName;
// I also tried -
//config.AppSettings.Settings.Remove("username");
//config.AppSettings.Settings.Add("username", m_strUserName);
config.Save(ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection("appSettings");
现在 - 我可以在运行时看到 - “调试”文件夹上的文件“...vshost.exe.config”发生了变化,当我关闭我的应用程序时——所有的更改都被删除了。我能做些什么?