示例文件:DB.config
1.读取
//先实例化一个ExeConfigurationFileMap对象,把物理地址赋值到它的 ExeConfigFilename 属性中;
ExeConfigurationFileMap fileMap = new ExeConfigurationFileMap();
fileMap.ExeConfigFilename = @"DB.config";
//再调用fileMap 实例化 config , 这样,操作的文件就是db.config文件了,也不会产生副本文件
Configuration config = ConfigurationManager.OpenMappedExeConfiguration(fileMap, ConfigurationUserLevel.None);
//获取appsettings节点
AppSettingsSection appsection = (AppSettingsSection)config.GetSection("appSettings");
string conStrAll = appsection.Settings[ConnectionName].Value;
2.新增
//在appsettings节点中添加元素
appsection.Settings.Add( "addkey1 ", "key1 's value ");
appsection.Settings.Add( "addkey2 ", "key2 's value ");
config.Save();
3.删除
//删除appsettings节点中的元素
appsection.Settings.Remove( "addkey1 ");
config.Save();
4.修改
//修改appsettings节点中的元素
appsection.Settings[ "addkey2 "].Value = "modify key2 's value ";
config.Save();