本文实例讲述了C#实现appSettings节点读取与修改的方法,分享给大家供大家参考。具体方法如下:
关键代码如下:
代码如下:
public static string GetAppSettingsValue(string key)
{
ConfigurationManager.RefreshSection(“appSettings”);
return ConfigurationManager.AppSettings[key] ?? string.Empty;
}
public static bool UpdateAppSettings(string key, string value)
{
var _config = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
if (!_config.HasFile)
{
throw new ArgumentException(“程序配置文件缺失!”);
}
KeyValueConfigurationElement _key = _config.AppSettings.Settings[key];
if (_key == null)
_config.AppSettings.Settings.Add(key, value);
else
_config.AppSettings.Settings[key].Value = value;
_config.Save(ConfigurationSaveMode.Modified);
return true;
}
希望本文所述对大家的C#程序设计有所帮助。
除声明外,跑步客文章均为原创,转载请以链接形式标明本文地址
C#实现appSettings节点读取与修改的方法
本文地址: http://www.paobuke.com/develop/c-develop/pbk23438.html
相关内容
C#设计模式之Template模板方法模式实现ASP.NET自定义控件 密码强度检测功能
DevExpress GridView自动滚动效果
C#网络爬虫代码分享 C#简单的爬取工具
解析C#设计模式编程中适配器模式的实现
.net 随机生成汉字
C#中委托用法实例分析
C#从文件或标准输入设备读取指定行的方法
C#和Java中二维数组区别分析