System.Reflection.Emit.OpCodes.Mul_Ovf Field

Multiplies two integer values, performs an overflow check, and pushes the result onto the evaluation stack.

Syntax

public static readonly OpCode Mul_Ovf

Remarks

The following table lists the instruction's hexadecimal and Microsoft Intermediate Language (MSIL) assembly format, along with a brief reference summary:

D8

mul.ovf

Multiplies two integer values on the stack with an overflow check.

The stack transitional behavior, in sequential order, is:

[The 'ordered' type of list has not been implemented in the ECMA stylesheet.]

The mul.ovf instruction multiplies integer value1 by integer value2 and pushes the result on the stack. An exception is thrown if the result will not fit in the result type.

OverflowException is thrown if the result can not be represented in the result type.

The following ILGenerator.Emit(OpCode) method overload can use the mul.ovf opcode:

  • ILGenerator.Emit(OpCode)

Requirements

Namespace: System.Reflection.Emit
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0