Example #1
0
 public static void start(int _port) //   서버 시작
 {
     if (broadcastServer == null)
     {
         broadcastServer = new BroadcastServer(_port);
     }
 }
Example #2
0
 static void Main(string[] args)
 {
     BroadcastServer.start(9999);
 }