I have these lines of code:
Byte[] byteDateLine = Encoding.GetEncoding(1252).GetBytes(strTmpMessage);
m_sock.Send( byteDateLine,byteDateLine.Length,0);
The problem is that I'm unable to send this in a rapid rate (the messages get stuck to each other). How can I "flush" it by force?
thanks!
--- neteject.com - Internet Solutions ---
Byte[] byteDateLine = Encoding.GetEncoding(1252).GetBytes(strTmpMessage);
m_sock.Send( byteDateLine,byteDateLine.Length,0);
The problem is that I'm unable to send this in a rapid rate (the messages get stuck to each other). How can I "flush" it by force?
thanks!
--- neteject.com - Internet Solutions ---