OpCodes.Xor Field  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Computes the bitwise XOR of the top two values on the evaluation stack, pushing the result onto the evaluation stack.
public: static initonly System::Reflection::Emit::OpCode Xor;public static readonly System.Reflection.Emit.OpCode Xor; staticval mutable Xor : System.Reflection.Emit.OpCodePublic Shared ReadOnly Xor As OpCode Field Value
Remarks
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:
- value1is pushed onto the stack.
- value2is pushed onto the stack.
- value2and- value1are popped from the stack and their bitwise XOR computed.
- The bitwise XOR of - value2and- value1is pushed onto the stack.
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: