Loads the element at a specified array index onto the top of the evaluation stack as the type specified in the instruction.
public: static initonly System::Reflection::Emit::OpCode Ldelem;
public static readonly System.Reflection.Emit.OpCode Ldelem;
staticval mutable Ldelem : System.Reflection.Emit.OpCode
Public Shared ReadOnly Ldelem 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 A3 <T
> ldelem typeTok
Loads the element at index
onto the top of the stack as type typeTok
.
The stack transitional behavior, in sequential order, is:
An object reference array
is pushed onto the stack.
An index value index
is pushed onto the stack.
index
and array
are popped from the stack; the value stored at position index
in array
is looked up.
The value is pushed onto the stack.
The ldelem
instruction loads the value of the element with 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 type of the return value is specified by the token typeTok
in the instruction.
NullReferenceException is thrown if array
is a null reference.
IndexOutOfRangeException is thrown if index
is negative, or larger than the upper bound of array
.
The following Emit method overload can use the ldelem
opcode:
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide. In this articleWas this page helpful?
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4