Posts by SlenderMan Black • 21 points
1 post
-
2
votes0
answers129
viewsQ: Improve C#socket performance
Client.Cs public void start() { this.Socket.BeginReceive(Buffer, 0, Buffer.Length, 0, new AsyncCallback(beginReceive), this.Socket); } private void beginReceive(IAsyncResult ar) { try { Socket…