OpCodes.Stobj Field
Assembly: mscorlib (in mscorlib.dll)
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:
-
An address is pushed onto the stack.
-
A value type object of type class is pushed onto the stack.
-
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 natural 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:
-
ILGenerator.Emit(OpCode, Type)
Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.