Bit Operation BXor

Bitwise XOR Operation.

Syntax

BAnd( int value1, int value2, int value3, )

 

Parameters

value 1 int Value 1
value 2 int Value 2
value n int Permits any number of values for XOR operation (Optional)

 

Return Values

Returns the result of the BXor operation as an integer.

 

Copy
Example
--This program will demonstrate the Bitwise Xor operation. 

        
val1 = 125     
val2 = 115    
--Display the result of the Bitwise Xor operation
Report(BitOp.BXor(val1, val2))