OpCodes.Ldvirtftn 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.
Pushes an unmanaged pointer (type native int
) to the native code implementing a particular virtual method associated with a specified object onto the evaluation stack.
public: static initonly System::Reflection::Emit::OpCode Ldvirtftn;
public static readonly System.Reflection.Emit.OpCode Ldvirtftn;
staticval mutable Ldvirtftn : System.Reflection.Emit.OpCode
Public Shared ReadOnly Ldvirtftn 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 |
---|---|---|
FE 07 < T > |
ldvirtftn method |
Pushes the pointer to an object's virtual method method on the stack. |
The stack transitional behavior, in sequential order, is:
An object reference is pushed onto the stack.
The object reference is popped from the stack and the address of the entry point to the method (as specified by the metadata token
method
) is looked up.The pointer to
method
is pushed onto the stack.
The resulting unmanaged pointer pushed onto the stack by the ldvirtftn
instruction can be called using the Calli instruction if it references a managed method (or a stub that transitions from managed to unmanaged code).
The unmanaged pointer 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 ldvirtftn
opcode: