hey guys, im sending signals over tcp/ip and using this to convert a string to bytes.
VB Code:
sendBytes = Encoding.ASCII.GetBytes(message)
is there a way to bypass this string conversion and just set sendBytes as an array of bytes. For instance:
VB Code:
sendBytes = bytes(81 01 04 62 02 ff)
thanks guys


Reply With Quote
