I have been working in this since yesterday and I can't seem to fully understand the bit shifting. What I'm trying to accomplish is that, I need to merge 2 numbers into 1 byte. The first number in the 1st four bits, and the second in the last four bits.
0001 = 1
0110 = 6
And then make them 1 byte from the binary "00010110".
After that, I also want to extract the 1 and the 6 separately. How do I do that?
All I can do is the extraction that I got from another question here:
int b = Convert.ToByte(value);
byte[] b1 = new byte[2];
b1[0] = b >> 4;
b1[1] = b & 0x0F;
Assuming that
value1
is0001 = 1
andvalue2
is0110 = 6
, you can merge both values with anOR
operation|
.