Winsock.SendData..

Blacksilent

Newcomer
Joined
Jul 10, 2006
Messages
4
Hi, im using "SendData" To sned informations to a specific server but here is what i would like to know...if i want to send into "HEX" how is it possible...if it is thank you in advance. :rolleyes:
 
If you are sending binary data then it makes no real sense to talk about sending data as 'hex', hexadecimal is merely a way of representing binary data in a alpha-numeric form.

If you are sending strings that need to be formatted as hexadecimal then all the integer data types will allow you to do a .ToString("X") and get a string back that contains a hex representation.
 
Back
Top