public static void StartServer()
 {
     new Thread(() =>
     {
         boardcastServer.Start();
     })
     {
         IsBackground = true
     }
     .Start();
 }
Beispiel #2
0
 private static void UDP_BroadcastServerReceive()
 {
     broadcastServer.Start();
 }