1. 在你的工程中,添加app.config文件。文件的内容默认为:
1 23
2.如果你想给程序配置一些参数,就在<configuration>标签中添加<appSettings>.例如下面:
1 23 4 75 6
3.然后你在后台程序里需要的地方读写它就可以了。记住需要添加引用
- using System.Configuration;
4.读操作:
- string strPath = ConfigurationManager.AppSettings["Path"];
5.写操作:
- Configuration cfa = ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None);
- cfa.AppSettings.Settings["NAME"].Value = "WANGLICHAO";
- cfa.Save();