I\'ve read an example of a Tcp Echo Server and some things are unclear to me.
TcpClient client = null; NetworkStream netStream = null; try { client = list
A TCP connection is, in principal, full duplex. So you are dealing with 2 separate channels and yes, both sides could be writing at the same time.