System.Reflection.Emit.OpCodes.Stelem_R8 Field

Replaces the array element at a given index with the float64 value on the evaluation stack.

Syntax

public static readonly OpCode Stelem_R8

Remarks

The following table lists the instruction's hexadecimal and Microsoft Intermediate Language (MSIL) assembly format, along with a brief reference summary:

A1

stelem.r8

Replaces an array element at the supplied index with the float64 value on the stack.

The stack transitional behavior, in sequential order, is:

[The 'ordered' type of list has not been implemented in the ECMA stylesheet.]

The stelem.r8 instruction replaces the value of the element index in the one-dimensional array array with the float64 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 ILGenerator.Emit(OpCode) method overload can use the stelem.r8 opcode:

  • ILGenerator.Emit(OpCode)

Requirements

Namespace: System.Reflection.Emit
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0