码迷,mamicode.com
首页 > Windows程序 > 详细

C# 修改配置文件

时间:2019-05-05 01:14:03      阅读:165      评论:0      收藏:0      [点我收藏+]

标签:lse   文件   ble   odi   tin   for   each   sum   void   

/// <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# 修改配置文件

标签:lse   文件   ble   odi   tin   for   each   sum   void   

原文地址:https://www.cnblogs.com/derekhan/p/10810542.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!