The following table lists the instruction's hexadecimal and Microsoft Intermediate Language (MSIL) assembly format, along with a brief reference summary:
5C |
div.un |
Divides two values, unsigned, returning a quotient. |
The stack transitional behavior, in sequential order, is:
[The 'ordered' type of list has not been implemented in the ECMA stylesheet.]The div.un instruction computes value1 divided by value2, both taken as unsigned integers, and pushes the result on the stack.
The following ILGenerator.Emit(OpCode) method overload can use the div.un opcode:
ILGenerator.Emit(OpCode)