I have stream_socket
....following information incoming to the buffer:
a,b,c,\r,\n,z which means -> 6 bytes
i am reading as from Microsoft example:
// Receive until the peer closes the connection
do {
iResult = recv(ConnectSocket, recvbuf, recvbuflen, 0);
...
more >>
Hello!
I have a GUI-instance recieving an event call via remoting. I know
that those events are handled in a seperate thread, therefore I invoke
them using the forms BeginInvoke() method.
public void UpdateDisplay(string value)
{
if (this._displayBox.InvokeRequired)
...
more >>
Hi there everyone-
I've spent the past few days reading MSDN documentation and profiling test
applications using various 3rd party profilers, but I seemed to have
confused myself more than helped. :-/
Here's where I'm at:
A stringbuilder is a mutable string object, meani...
more >>