S
Sven Huijbrechts
Hello,
I need to send a couple of "NUL"s -> HEX value "00" on a networkstream..
This is the code we currently use to send string:
Dim sendBytes As [Byte]() = Encoding.ASCII.GetBytes(inputtext.ToString)
networkStream.Write(sendBytes, 0, sendBytes.Length)
Since there is no char value for hex 00 (NUL) it's not possible to use a
string as input..
Thanks,
Sven
I need to send a couple of "NUL"s -> HEX value "00" on a networkstream..
This is the code we currently use to send string:
Dim sendBytes As [Byte]() = Encoding.ASCII.GetBytes(inputtext.ToString)
networkStream.Write(sendBytes, 0, sendBytes.Length)
Since there is no char value for hex 00 (NUL) it's not possible to use a
string as input..
Thanks,
Sven