Expand Minimize
This topic has not yet been rated - Rate this topic

OpCodes.Stloc_S Field

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

Namespace:  System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)
public static readonly OpCode Stloc_S

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

13 < unsigned int8 >

stloc.s index

Pops a value from the stack and stores it in local variable index, short form.

The stack transitional behavior, in sequential order, is:

  1. A value is popped off of the stack and placed in local variable index.

The stloc.s instruction pops the top value off the evaluation stack and moves it into local variable number index, where local variables are numbered 0 onwards. The type of the value must match the type of the local variable as specified in the current method's local signature.

The stloc.s instruction provides an efficient encoding for local variables 0 through 255.

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 overloads can use the stloc.s opcode:

  • ILGenerator.Emit(OpCode, LocalBuilder)

  • ILGenerator.Emit(OpCode, byte)

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
Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.