Language Reference Guide : 4. System Classes : IntegerObject Class : BitXor Method
 
Share this page                  
BitXor Method
The BitXor method returns the result of a bitwise XOR operation between the value of the IntegerObject and the value given as argument.
Bitwise XOR does the logical XOR of the bits in each position of the value in its binary form. If either bit is 1, but not both, the answer is 1; otherwise the answer is 0.
This method has the following syntax:
integer8 = IntegerObject.BitXor(value = integer8);
This method has the following parameter:
value
(Required) Specifies the value of the bitwise XOR operation argument