导航

修改 config settings

Posted on 2009-05-20 09:27  阳光有约  阅读(213)  评论(0编辑  收藏  举报
Configuration config = ConfigurationManager.
OpenExeConfiguration(ConfigurationUserLevel.None);
//获取AppSettings的节点
AppSettingsSection appsection = (AppSettingsSection)config.GetSection("appSettings");
appsection.Settings["要修改的节点"].Value = 值;
config.Save();
请注意,你调试的时候修改的是\bin\Debug\A.vshost.exe.config