예제 #1
0
파일: Program.cs 프로젝트: KallDrexx/SIS-cs
        static void Main(string[] args)
        {
            var ctx = new SingleThreadSynchronizationContext();
             SynchronizationContext.SetSynchronizationContext(ctx);

             var server = new Server(IPAddress.Any, 9001);
             Server.HostName = "localhost";
             server.Run();

             ctx.RunMessagePump();
        }