OpCodes.Jmp Field
Exits current method and jumps to specified method.
Assembly: mscorlib (in mscorlib.dll)
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:
-
ILGenerator.Emit(OpCode, MethodInfo)
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.