C#读写app.config中的数据

C#读写app.config中的数据
读语句:
String str = ConfigurationManager.AppSettings["DemoKey"];
写语句:
Configuration cfa = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
cfa.AppSettings.Settings["DemoKey"].Value = "DemoValue";
cfa.Save();
上一篇:CentOS7 新增的硬盘扩容到根目录


下一篇:Centos7 yum安装nginx