OpCodes.Ldelema Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Loads the address of the array element at a specified array index onto the top of the evaluation stack as type & (managed pointer).
public: static initonly System::Reflection::Emit::OpCode Ldelema;
public static readonly System.Reflection.Emit.OpCode Ldelema;
staticval mutable Ldelema : System.Reflection.Emit.OpCode
Public Shared ReadOnly Ldelema 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 |
|---|---|---|
8F < T > |
ldelema class |
Loads the address of the array element at index onto the top of the evaluation stack as type & (managed pointer). |
The stack transitional behavior, in sequential order, is:
An object reference
arrayis pushed onto the stack.An index value
indexis pushed onto the stack.indexandarrayare popped from the stack; the address stored at positionindexinarrayis looked up.The address is pushed onto the stack.
The ldelema is used to retrieve the address of an object at a particular index in an array of objects (of type class). The ldelema instruction loads the address of the value at index index (type native int) in the zero-based one-dimensional array array and places it on the top of the stack. Arrays are objects and hence represented by a value of type O. The value must be of type class passed with the instruction.
The return value for ldelema is a managed pointer (type &).
Note that integer values of less than 4 bytes are extended to int32 (not native int) when they are loaded onto the evaluation stack.
NullReferenceException is thrown if array is a null reference.
ArrayTypeMismatchException is thrown if array does not hold elements of the required type.
IndexOutOfRangeException is thrown if index is negative, or larger than the bound of array.
The following Emit method overload can use the ldelema opcode: