Esempio n. 1
0
        /// <summary>
        /// Start method of the CLI-application
        /// </summary>
        /// <param name="args"></param>
        static void Main(string[] args)
        {
            Server server = new Server();

            if (!server.ServerIsRunning())
            {
                server.SetupServer();
                Console.ReadLine();
            }
            else
            {
                Client client = new Client();
                client.StartClient();
            }
        }