Performs the bitwise OR 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 OR operation.
The current instance containing the result of the bitwise OR operation on the elements in the current BitArray against the corresponding elements in the specified BitArray.
The bitwise OR operation returns true if one or both operands are true, and returns false if both operands are false.
This method is an O(n) operation, where n is BitArray.Count.