OpCodes.Xor Field
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Computes the bitwise XOR of the top two values on the evaluation stack, pushing the result onto the evaluation stack.
Assembly: mscorlib (in mscorlib.dll)
The following table lists the instruction's hexadecimal and Microsoft intermediate language (MSIL) assembly format, along with a brief reference summary:
Format | Assembly Format | Description |
|---|---|---|
61 | xor | Computes the bitwise XOR of two integer values and returns an integer. |
The stack transitional behavior, in sequential order, is:
value1 is pushed onto the stack.
value2 is pushed onto the stack.
value2 and value1 are popped from the stack and their bitwise XOR computed.
value2 and value1 are popped from the stack and their bitwise XOR computed.
The xor instruction computes the bitwise XOR of the top two values on the stack and leaves the result on the stack.
Xor is an integer-specific operation.
The following Emit method overload can use the xor opcode:
ILGenerator.Emit(OpCode)