System.Reflection.Emit.OpCodes.Jmp Field

Exits current method and jumps to specified method.

Syntax

public static readonly OpCode Jmp

Remarks

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

27 < T >

jmp method

Exit current method and jump to specified method.

There are no stack transition behaviors for this instruction.

The jmp (jump) instruction transfers control to the method specified by method, which is a metadata token for a method reference. The current arguments are transferred to the destination method.

The evaluation stack must be empty when this instruction is executed. The calling convention, number and type of arguments at the destination address must match that of the current method.

The jmp instruction cannot be used to transferred control out of a try, filter, catch, or finally block.

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

  • ILGenerator.Emit(OpCode, MethodInfo)

Requirements

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