码迷,mamicode.com
首页 > 移动开发 > 详细

C#实现appSettings节点读取与修改的方法

时间:2017-11-29 14:48:03      阅读:273      评论:0      收藏:0      [点我收藏+]

标签:bool   .net自定义控件   normal   date   网络爬虫   str   color   动效   功能   

本文实例讲述了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#实现appSettings节点读取与修改的方法

标签:bool   .net自定义控件   normal   date   网络爬虫   str   color   动效   功能   

原文地址:http://www.cnblogs.com/paobuke/p/7920120.html

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