Example #1
0
        static void Main(string[] args)
        {
            Console.WriteLine("Welcome to GemCarryServer. Type 'quit' to shut down.");

            mServerHost = new ServerHost();
            mServerHost.StartServer();

            string userinput = "";
            while (userinput != "quit")
            {
                userinput = Console.ReadLine();
            }
        }
Example #2
0
        static void Main(string[] args)
        {
            Console.WriteLine("Welcome to GemCarryServer. Type 'quit' to shut down.");

            mServerHost = new ServerHost();
            mServerHost.StartServer();

            string userinput = "";

            while (userinput != "quit")
            {
                userinput = Console.ReadLine();
            }
        }