C#读写app.config中的数据

时间:2023-03-09 06:45:01
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();