Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

OpCodes::Mkrefany Field

 

Pushes a typed reference to an instance of a specific type onto the evaluation stack.

Namespace:   System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)

public:
static initonly OpCode Mkrefany

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

C6 < T >

mkrefany class

Pushes a typed reference of type class onto the stack.

The stack transitional behavior, in sequential order, is:

  1. A pointer to piece of data is pushed onto the stack.

  2. The pointer is popped and converted to a typed reference of type class.

  3. The typed reference is pushed onto the stack.

The mkrefany instruction supports the passing of dynamically typed references. The pointer must be of type &, *, or native int, and hold the valid address of a piece of data. Class is the class token describing the type of the data referenced by the pointer. Mkrefany pushes a typed reference on the stack, providing an opaque descriptor of the pointer and the type class.

The only valid operation permitted upon a typed reference is to pass it to a method that requires a typed reference as a parameter. The callee can then use the Refanytype and Refanyval instructions to retrieve the type (class) and the address respectively.

TypeLoadException is thrown if class cannot be found. This is typically detected when Microsoft Intermediate Language (MSIL) instructions are converted to native code rather than at runtime.

The following Emit method overload can use the mkrefany opcode:

  • ILGenerator.Emit(OpCode, Type)

Universal Windows Platform
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
Return to top
Show:
© 2017 Microsoft