自己在网上找的提取的方法,的确可以,但是在程序初始化的时候,又调用不到值了。原来没有保存,直接从提取缓存到保存一起写出来吧。
在<startup>下面去定义
App.config
<appSettings>
<add key="Count" value="0" />
</appSettings>
WinForm窗体
Configuration cfa = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
System.Configuration.ConfigurationManager.AppSettings["Count"] ; //获取
cfa.AppSettings.Settings["Count"].Value = 0.ToString(); //赋值
下边是最重要的两步
cfa.Save();//保存
ConfigurationManager.RefreshSection("appSettings"); //刷新缓存