C# 修改配置文件
Posted derekhan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C# 修改配置文件相关的知识,希望对你有一定的参考价值。
/// <summary>
/// 保存配置文件的设定
/// </summary>
/// <param name="Key"></param>
/// <param name="Value"></param>
public static void SaveAppConfig(string Key, string Value)
{
string strFilePath = System.Windows.Forms.Application.ExecutablePath;
Configuration objConfig = ConfigurationManager.OpenExeConfiguration(strFilePath);
bool bolExist = false;
foreach (string Item in objConfig.AppSettings.Settings.AllKeys)
{
if (Item == Key)
{
bolExist = true;
break;
}
}
if (bolExist)
{
objConfig.AppSettings.Settings.Remove(Key);
}
objConfig.AppSettings.Settings.Add(Key, Value);
objConfig.Save(ConfigurationSaveMode.Modified);
ConfigurationManager.RefreshSection("appSettings");
}
以上是关于C# 修改配置文件的主要内容,如果未能解决你的问题,请参考以下文章
C# 不重启程序修改并保存配置文件(appSettings节点)