Replaces the array element at a given index with the value on the evaluation stack, whose type is specified in the instruction.
public: static initonly System::Reflection::Emit::OpCode Stelem;
public static readonly System.Reflection.Emit.OpCode Stelem;
staticval mutable Stelem : System.Reflection.Emit.OpCode
Public Shared ReadOnly Stelem 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 A4 <T
> stelem typeTok
Replaces the array element at the supplied index with a value of type typeTok
on the stack.
The stack transitional behavior, in sequential order, is:
An object reference to an array, array
, is pushed onto the stack.
An index value, index
, to an element in array
is pushed onto the stack.
A value of the type specified in the instruction is pushed onto the stack.
The value, the index, and the array reference are popped from the stack; the value is put into the array element at the given index.
The stelem
instruction replaces the value of the element at the supplied zero-based index in the one-dimensional array array
with the value. The value has the type specified by the token typeTok
in the instruction.
Arrays are objects, and hence represented by a value of type O
. The index is type native int
.
NullReferenceException is thrown if array
is a null reference.
IndexOutOfRangeException is thrown if index
is negative, or larger than the bound of array
.
ArrayTypeMismatchException is thrown if array
does not hold elements of the required type.
The following Emit method overload can use the stelem
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