OpCodes.Stind_I8 Field
Stores a value of type int64 at a supplied address.
[Visual Basic] Public Shared ReadOnly Stind_I8 As OpCode [C#] public static readonly OpCode Stind_I8; [C++] public: static OpCode Stind_I8; [JScript] public static var Stind_I8 : OpCode;
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 |
|---|---|---|
| 55 | stind.i8 | Stores an int64 value at at a given address. |
The stack transitional behavior, in sequential order, is:
- An address is pushed onto the stack.
- A value is pushed onto the stack.
- The value and the address are popped from the stack; the value is stored at the address.
The stind.i8 instruction stores an int64 value at the supplied address (type natural int, *, or &).
Type safe operation requires that the stind.i8 instruction be used in a manner consistent with the type of the pointer. The operation of the stind.i instruction can be altered by an immediately preceding Volatile or Unaligned prefix instruction.
NullReferenceException is thrown if addr is not naturally aligned for the argument type implied by the instruction suffix.
The following Emit constructor overload can use the stind.i8 opcode:
- ILGenerator.Emit(OpCode)
Requirements
Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family
See Also
OpCodes Class | OpCodes Members | System.Reflection.Emit Namespace