C# equivalent of recv?
- by mlh
Hello,
I have a portion of C code that I am trying to port over to C#.
In my C code, I create a socket and then issue a receive command. The receive command is
void receive(mysocket, char * command_buffer)
{
recv(mysocket, command_buffer, COMMAND_BUFFER_SIZE, 0);
}
now, the command buffer is returned with new values including command_buffer[8]…