从 exe.config 读取appSettings 中的配置数据
程序员文章站
2022-07-11 09:57:38
右键解决方案,添加引用--> System.Configuration.dll 在exe.config 中添加数据 读取添加的配置数据 ......
右键解决方案,添加引用--> system.configuration.dll
在exe.config 中添加数据
<appsettings> <add key="ip" value="0.0.0.0" />
<add key="port" value="1234" /> </appsettings>
读取添加的配置数据
if ((true == ipaddress.tryparse(configurationmanager.appsettings["ip"], out ipaddress alarmip))&& (true == int.tryparse(configurationmanager.appsettings["port"], out int alarmport))) {//有外部配置,用外部配置指定地址 jtudpt = new jtudpt("udp", alarmip.tostring(), alarmport); } else {//无外部配置,用默认地址和端口 jtudpt = new jtudpt("udp", "0.0.0.0", 1236);//服务器 }
上一篇: 刚才和女友一起看白蛇传.缘起
下一篇: 【转载】 C#往文件中追加文本内容信息