右鍵解決方案,添加引用--> 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);//伺服器 }