OpCodes Fields


.NET Framework Class Library
OpCodes..::.Stloc_0 Field

Pops the current value from the top of the evaluation stack and stores it in a the local variable list at index 0.

Namespace:  System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)
Syntax

Visual Basic (Declaration)
Public Shared ReadOnly Stloc_0 As OpCode
Visual Basic (Usage)
Dim value As OpCode

value = OpCodes.Stloc_0
C#
public static readonly OpCode Stloc_0
Visual C++
public:
static initonly OpCode Stloc_0
JScript
public static final var Stloc_0 : OpCode
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

0A

stloc.0

Pops a value from the stack into local variable 0.

The stack transitional behavior, in sequential order, is:

  1. A value is popped off of the stack and placed in the local variable indexed by 0.

The stloc.0 instruction pops the top value off the evaluation stack and moves it into the local variable indexed by 0. The type of the value must match the type of the local variable as specified in the current method's local signature.

stloc.0 is an especially efficient encoding for storing values in local variable 0.

Storing into locals that hold an integer value smaller than 4 bytes long truncates the value as it moves from the stack to the local variable. Floating-point values are rounded from their native size (type F) to the size associated with the argument.

The following Emit method overload can use the stloc.0 opcode:

  • ILGenerator.Emit(OpCode)

Platforms

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.
Version Information

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
See Also

Reference

Tags :


Page view tracker