Compute the bitwise complement of the two integer values on top of the stack and pushes the result onto the evaluation stack.
The following table lists the instruction's hexadecimal and Microsoft Intermediate Language (MSIL) assembly format, along with a brief reference summary:
60 |
or |
Computes the bitwise OR of two integer values, returns an integer. |
The stack transitional behavior, in sequential order, is:
[The 'ordered' type of list has not been implemented in the ECMA stylesheet.]The or instruction computes the bitwise OR of two values atop the stack, pushing the result onto the stack.
Or is an integer-specific operation.
The following ILGenerator.Emit(OpCode) method overload can use the or opcode:
ILGenerator.Emit(OpCode)