OpCodes::Ldftn Field
Pushes an unmanaged pointer (type native int) to the native code implementing a specific method onto the evaluation stack.
Assembly: mscorlib (in mscorlib.dll)
Field Value
Type: System.Reflection.Emit::OpCodeThe following table lists the instruction's hexadecimal and Microsoft Intermediate Language (MSIL) assembly format, along with a brief reference summary:
Format | Assembly Format | Description |
|---|---|---|
FE 06 < T > | ldftn method | Pushes a pointer to a method referenced by method on the stack. |
The stack transitional behavior, in sequential order, is:
The unmanaged pointer to a specific method is pushed onto the stack.
The specific method (method) can be called using the Calli instruction if it references a managed method (or a stub that transitions from managed to unmanaged code).
The value returned points to native code using the CLR calling convention. This method pointer should not be passed to unmanaged native code as a callback routine.
The following Emit method overload can use the ldftn opcode:
ILGenerator.Emit(OpCode, MethodInfo)
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Windows Phone
Available since 8.1