Exemplo n.º 1
0
        static void Main(string[] args)
        {
            ServerControl serverControl = new ServerControl();

            serverControl.Start();
            Console.ReadKey();
        }
Exemplo n.º 2
0
        static void Main(string[] args)
        {
            //new ServerControl().Start();
            //return;
            ServerControl server = new ServerControl();

            server.Start();

            Console.ReadKey();
        }
Exemplo n.º 3
0
        static void Main(string[] args)
        {
            int port;

            if (args.Length > 0)
            {
                port = int.Parse(args[0]);
            }
            else
            {
                port = 1157;
            }
            ServerControl serverControl = new ServerControl();

            serverControl.Start(port);
            Console.WriteLine("127.0.0.1:{0} --服务启动成功", port);
            Console.ReadKey();
        }