OpCodes.Ldloc_S Field
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Loads the local variable at a specific index onto the evaluation stack, short form.
Namespace: System.Reflection.Emit
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
Public Shared ReadOnly Ldloc_S As OpCode
public static readonly OpCode Ldloc_S
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 |
---|---|---|
11 < unsigned int8 > |
ldloc.s index |
Loads the local variable at index index onto stack, short form. |
The stack transitional behavior, in sequential order, is:
- The local variable value at the specified index is pushed onto the stack.
The ldloc.s instruction pushes the contents of the local variable number at the passed index onto the evaluation stack, where the local variables are numbered 0 onwards. Local variables are initialized to 0 before entering the method if the initialize flag on the method is true. There are 256 (2^8) local variables possible (0-255) in the short form, which is a more efficient encoding than ldloc.
The type of the value is the same as the type of the local variable, which is specified in the method header. See Partition I. Local variables that are smaller than 4 bytes long are expanded to type int32 when they are loaded onto the stack. Floating-point values are expanded to their native size (type F).
The following Emit method overloads can use the ldloc.s opcode:
ILGenerator.Emit(OpCode, LocalBuilder)
ILGenerator.Emit(OpCode, byte)
Version Information
Silverlight
Supported in: 5, 4, 3
Silverlight for Windows Phone
Supported in: Windows Phone OS 7.1
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.