The problem is that I have an Array of Byte with 200 Indexes and just want to check that is the Fourth bit of MyArray[75] is Zero(0) or One(1).
byte[] MyArray; //with 200 elements
//check the fourth BIT of MyArray[75]
|
|
The fourth bit in element 75?
The & operator allows you to use a value as a mask.
You can use this method to gather any of the bit values using the same technique.
|
|||||||||||||||
|
|
Something like:
Assuming you meant 4th bit from the right. And you might want to check out |
|||||||
|
|
|
|||||||||||||
|