G
Guest
I'm using sockets. I need to send bytes without alternation from 0-255. When
I use the standard,
Byte[] bytestuff = System.Text.Encoding.ASCII.GetBytes(stuff.ToCharArray());
tSocket.Send(bytestuff,bytestuff.Length,0);
It encodes most characters to ? past asci 127. I beleive that's because of
the Encoding,ASCII. How can I send info preserving the raw bits for asci
128-255?
Thanks in advance.
I use the standard,
Byte[] bytestuff = System.Text.Encoding.ASCII.GetBytes(stuff.ToCharArray());
tSocket.Send(bytestuff,bytestuff.Length,0);
It encodes most characters to ? past asci 127. I beleive that's because of
the Encoding,ASCII. How can I send info preserving the raw bits for asci
128-255?
Thanks in advance.