...
What I am trying to do is to connect to a server and be able to send and receive data packets in hex.
How?!
I am using Vb.NET 2010.
Printable View
...
What I am trying to do is to connect to a server and be able to send and receive data packets in hex.
How?!
I am using Vb.NET 2010.
Use the TcpClient class to connect to the server.
Just a FYI, hexadecimal is just a way to represent an integer. You do not send and receive hex, you send and receive bytes. How you choose to format these for display is another story.