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