Exemplo n.º 1
0
            void Start()
            {
                Socket sock = Sockets.CreateTCPSocket("www.myserver.com", 2345);

                client              = new ClientInfo(sock, false); // Don't start receiving yet
                client.OnReadBytes += new ConnectionReadBytes(ReadData);
                client.BeginReceive();
            }