Program.cs 344 B

12345678910111213141516
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. namespace WebSocketServer
  6. {
  7. public class MainProgram
  8. {
  9. public static void Main(string[] args)
  10. {
  11. WebSocketServerTest WSServerTest = new WebSocketServerTest();
  12. WSServerTest.Start();
  13. }
  14. }
  15. }