BitwiseXor

From Xojo Documentation

Method

Performs a bitwise Xor on value1 and value2.

Usage

result = BitwiseXor(value1, value2)

Part Description
value1 Required. A UInt64 value.
value2 Required. A UInt64 value.
result Integer value.

Sample Code

Dim b As Integer = 15
Dim a As Integer = 7
Dim c As Integer = BitwiseXor(a, b) // c = 8

See Also

Bitwise.BitXor function;