I\'m trying to send an image using a TCP socket. The client connects to the server without any problems and start to receive the data. The problem is when I try to convert t
It seems like your server is sending the image over and over again:
while (client.Connected) { NetworkStream nStream = client.GetStream(); nStream.Write(bStream, 0, bStream.Length); }
If the server can send data fast enough, the client will probably keep receiving it.