别裁伪体亲风雅,转益多师是汝师。这篇文章主要讲述C#实现appSettings节点读取与修改的方法相关的知识,希望能为你提供帮助。
本文实例讲述了C#实现appSettings节点读取与修改的方法,分享给大家供大家参考。具体方法如下:
关键代码如下:
【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 = https://www.songbingjia.com/android/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中二维数组区别分析
推荐阅读
- Appium Server的安装和配置
- App混合开发浅谈
- asp.net中Server.MapPath的使用
- 牛腩代码生成器使用视频(dapper)
- 在Android中调用USB摄像头
- appium安装说明
- 关于android定位的坐标系问题
- Unity编译时找不到AndroidSDK的问题 | Unable to list target platforms(转载)
- Android Room联合AsyncListUtil实现RecyclerView分页加载ORM数据