对config配置文件的读取和修改

在c#中想要使用对congfig文件的操作必要引用一个dll“system.configuration.dll”

读取 : string  str= System.Configuration.ConfigurationSettings.AppSettings["Key"];

对配置文件进行修改:

Configuration cfa = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);

//添加

cfa.AppSettings.Settings.Add("key", "Name")

//修改

cfa.AppSettings.Settings["BrowseDir"].Value = "name";

最后调用 
cfa.Save(); 
当前的配置文件更新成功。

上一篇:对MySql查询缓存及SQL Server过程缓存的理解及总结


下一篇:著名清理软件(CCleaner) 5.24.5841 中文版