Program.cs 371 B

12345678910111213141516
  1. using System;
  2. using HttpTest.HttpService;
  3. namespace HttpTest
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int port = 9999;
  10. CustomHttpServer httpServer = new CustomHttpServer(10);
  11. httpServer.Start(port);
  12. //Console.WriteLine(DateTime.Now.ToString("yyyy-MM-dd 00:00:00"));
  13. }
  14. }
  15. }