Beispiel #1
0
        static void Main(string[] args)
        {
            SimpleServer server = new SimpleServer();
            server.Start();

            Console.WriteLine("Press any key to stop the fastcgi server");
            Console.ReadKey();

            server.Stop();
        }