Returns from the current method, pushing a return value (if present) from the callee's evaluation stack onto the caller's evaluation stack.
Namespace:
System.Reflection.Emit
Assembly:
mscorlib (in mscorlib.dll)
'Usage
Dim value As OpCode
value = OpCodes.Ret
'Declaration
Public Shared ReadOnly Ret As OpCode
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 |
|---|
2A | ret | Returns from method, possibly returning a value. |
The stack transitional behavior, in sequential order, is:
The return value is popped from the callee evaluation stack.
The return value obtained in step 1 is pushed onto the caller evaluation stack.
If the return value is not present on the callee evaluation stack, no value is returned (no stack transition behaviors for either the callee or caller method).
The type of the return value, if any, of the current method determines the type of value to be fetched from the top of the stack and copied onto the stack of the method that called the current method. The evaluation stack for the current method must be empty except for the value to be returned.
The ret instruction cannot be used to transfer control out of a try, filter, catch, or finally block. From within a try or catch, use the Leave instruction with a destination of a ret instruction that is outside all enclosing exception blocks. Because the filter and finally blocks are logically part of exception handling and not the method in which their code is embedded, correctly generated Microsoft Intermediate Language (MSIL) instructions do not perform a method return from within a filter or finally.
The following Emit method overload can use the ret opcode:
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
.NET Framework
Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
Reference