OpCodes.Stelem_I1 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.
Replaces the array element at a given index with the int8
value on the evaluation stack.
public: static initonly System::Reflection::Emit::OpCode Stelem_I1;
public static readonly System.Reflection.Emit.OpCode Stelem_I1;
staticval mutable Stelem_I1 : System.Reflection.Emit.OpCode
Public Shared ReadOnly Stelem_I1 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 |
---|---|---|
9C | stelem.i1 | Replaces an array element at the supplied index with the int8 value on the stack. |
The stack transitional behavior, in sequential order, is:
An object reference to an array,
array
, is pushed onto the stack.A valid index to an element in
array
is pushed onto the stack.A value 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.i1
instruction replaces the value of the element index
in the one-dimensional array array
with the int8
value pushed onto the stack.
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.i1
opcode: