I\'m writing a simple application which will connect with a server. However I want to send simple chat commands aswell (see Console.ReadLine below). However thi
Console.ReadLine
You could try using the DataAvailable property. It'll tell you whether there's anything waiting on the socket. If it's false, don't do the Read call.
Read