I would like to know if the Send() method in Socket class thread safe. THat mean, if two different objects happen to call mySocket.Send(..) on the same socket at the same time, will there be any problem in that?
I've read that in TCPClient, the GetStream class can be locked:
lock (myClient.getStream)
but how about in the Socket class for the Send() method?
