H
hermbagger
Hello..
Does anyone know the C# equivalent of an unsigned char in C++?
Thanks!
Does anyone know the C# equivalent of an unsigned char in C++?
Thanks!
Hello..
Does anyone know the C# equivalent of an unsigned char in C++?
Thanks!
Does anyone know the C# equivalent of an unsigned char in C++?
cjard said:unsigned char? can a char be unsigned? isnt unsigning a contextual
thing?
suppose you have the char © - its code is A9, 169 to you and me as an
unsigned byte, or -87 as a signed byte. either way, -87 or 169.. its
still A9, or 10101001 as binary.. or © as a char who cares what the
sign is?