在应用程序启动的时候我们经常会配置一些默认值,把这些值配置在配置文件里面,C#有专门的接口。
首先要添加System.Configuration的引用;在引用里面,右击--》添加引用--》程序集--》搜索输入con,然后选中System.Configuration,点击确认;
我们在创建桌面应用程序的时候默认都会创建App.config,如果没有的话也请添加(右击-》添加新建项--》应用程序配置文件)
<?xmlversion="1.0"encoding="utf-8"?><configuration><startup><supportedRuntimeversion="v4.0"sku=".NETFramework,Version=v4.6.1"/></startup><appSettings><addkey="reboot"value="1"/></appSettings></configuration>
然后在代码里面引用
先要引用进来
usingSystem.Configuration;
boolIsRebootDevice=ConfigurationManager.AppSettings["reboot"]=="1";
简单代码demo