OpCodes.Ldobj Field

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Copies the value type object pointed to by an address to the top of the evaluation stack.

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

Syntax

Public Shared ReadOnly Ldobj As OpCode
public static readonly OpCode Ldobj

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

71 < T >

ldobj class

Copy instance of value type class to the stack.

The stack transitional behavior, in sequential order, is:

  1. The address of a value type object is pushed onto the stack.

  2. The address is popped from the stack and the instance at that particular address is looked up.

  3. The value of the object stored at that address is pushed onto the stack.

The ldobj instruction is used to pass a value type as a parameter.

The ldobj instruction copies the value pointed to by addrOfValObj (of type &, *, or native int) to the top of the stack. The number of bytes copied depends on the size of the class (as specified by the class parameter). The class parameter is a metadata token representing the value type.

The operation of the ldobj instruction can be altered by an immediately preceding Volatile or Unaligned prefix instruction.

TypeLoadException is thrown if class cannot be found. This is typically detected when MSIL instructions are converted to native code, not at run time.

The following Emit method overload can use the ldobj opcode:

  • ILGenerator.Emit(OpCode, Type)

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1

Platforms

Windows Phone

See Also

Reference

OpCodes Class

System.Reflection.Emit Namespace