Performs the bitwise AND operation on the elements in the current BitArray against the corresponding elements in the specified BitArray.
- value
- The BitArray with which to perform the bitwise AND operation.
The current instance containing the result of the bitwise AND operation on the elements in the current BitArray against the corresponding elements in the specified BitArray.
The bitwise AND operation returns true if both operands are true, and returns false if one or both operands are false.
This method is an O(n) operation, where n is BitArray.Count.