Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
OpCodes Class
OpCodes Fields
 Stelem_I4 Field

  Switch on low bandwidth view
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
OpCodes..::.Stelem_I4 Field

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

Namespace:  System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)
Visual Basic (Declaration)
Public Shared ReadOnly Stelem_I4 As OpCode
Visual Basic (Usage)
Dim value As OpCode

value = OpCodes.Stelem_I4
C#
public static readonly OpCode Stelem_I4
Visual C++
public:
static initonly OpCode Stelem_I4
JScript
public static final var Stelem_I4 : OpCode

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

9E

stelem.i4

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

The stack transitional behavior, in sequential order, is:

  1. An object reference to an array, array, is pushed onto the stack.

  2. A valid index to an element in array is pushed onto the stack.

  3. A value is pushed onto the stack.

  4. 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.i4 instruction replaces the value of the element index in the one-dimensional array array with the int32 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.i4 opcode:

  • ILGenerator.Emit(OpCode)

Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker