1
0
mirror of https://e.coding.net/circlecloud/SixiBroadcast.git synced 2025-11-24 23:56:05 +00:00

修改监听为后台线程...

This commit is contained in:
j502647092
2015-08-05 11:07:48 +08:00
parent c7e7be1083
commit b1150377fc
2 changed files with 5 additions and 1 deletions

View File

@@ -28,6 +28,7 @@ namespace UDPServer
endpoint = new IPEndPoint(IPAddress.Any, 0);
//启动客户端监听
Thread t = new Thread(new ThreadStart(ClientThread));
t.IsBackground = true;
t.Start();
}