using System; using HttpTest.HttpService; namespace HttpTest { class Program { static void Main(string[] args) { int port = 9999; CustomHttpServer httpServer = new CustomHttpServer(10); httpServer.Start(port); //Console.WriteLine(DateTime.Now.ToString("yyyy-MM-dd 00:00:00")); } } }