欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

从 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);//服务器
}