using HDLCloudMonitorSupportCtrlOldUdpGate.Logs; using System; using System.Threading; namespace HDLCloudMonitorSupportCtrlOldUdpGate { class Program { static void Main(string[] args) { //启动模拟Udp网关 MockBusproUdpGateway.StartUdpClient(); //启动模拟Mqtt控制Udp网关 MockEmqCtrlBusproUdpGateway.StartCtrlBusproUdpGateway(); //预警告定时服务 //EarlyWarningTimerServoce.StartEarlyWarning(); while (true) { Thread.Sleep(1000); } Console.ReadKey(); } } }