標籤: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#設計模式之Template模板方法模式實現ASP.NET自訂控制項 密碼強度檢測功能DevExpress GridView自動滾動效果C#網路爬蟲代碼分享 C#簡單的爬取工具解析C#設計模式編程中適配器模式的實現
.net 隨機產生漢字C#中委託用法執行個體分析C#從檔案或標準輸入裝置讀取指定行的方法C#和Java中二維數組區別分析
C#實現appSettings節點讀取與修改的方法