예제 #1
0
		public static void Main()
		{

			Server server = new Server();
			server.Start();
		}
예제 #2
0
파일: Program.cs 프로젝트: comradgrey/Chat
 static void Main(string[] args)
 {
     Server server = new Server(PORT);
     server.Start();
     Console.ReadKey();
 }