OpCodes.Jmp 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.
Exits current method and jumps to specified method.
public: static initonly System::Reflection::Emit::OpCode Jmp;
public static readonly System.Reflection.Emit.OpCode Jmp;
staticval mutable Jmp : System.Reflection.Emit.OpCode
Public Shared ReadOnly Jmp 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 |
---|---|---|
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 Emit method overload can use the jmp
opcode: