OpCodes.Stobj Field

Definition

Copies a value of a specified type from the evaluation stack into a supplied memory address.

public: static initonly System::Reflection::Emit::OpCode Stobj;
public static readonly System.Reflection.Emit.OpCode Stobj;
 staticval mutable Stobj : System.Reflection.Emit.OpCode
Public Shared ReadOnly Stobj 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
81 < T > stobj class Stores a value of type class from the stack into memory.

The stack transitional behavior, in sequential order, is:

  1. An address is pushed onto the stack.

  2. A value type object of type class is pushed onto the stack.

  3. The object and the address are popped from the stack; the value type object is stored at the address.

The stobj instruction copies the value type object into the address specified by the address (a pointer of type native int, *, or &). The number of bytes copied depends on the size of the class represented by class, a metadata token representing a value type.

The operation of the stobj 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 Microsoft Intermediate Language (MSIL) instructions are converted to native code rather than at run time.

The following Emit method overload can use the stobj opcode:

Applies to