OpCodes::Ldloca_S Field
Loads the address of the local variable at a specific index onto the evaluation stack, short form.
Assembly: mscorlib (in mscorlib.dll)
Field Value
Type: System.Reflection.Emit::OpCodeThe following table lists the instruction's hexadecimal and Microsoft Intermediate Language (MSIL) assembly format, along with a brief reference summary:
Format | Assembly Format | Description |
|---|---|---|
12 < unsigned int8 > | ldloca.s index | Loads the address of the local variable at index onto the evaluation stack, short form. |
The stack transitional behavior, in sequential order, is:
The address stored in the local variable at the specified index is pushed onto the stack.
The ldloca.s instruction pushes the address of the local variable number at the passed index onto the stack, where local variables are numbered 0 onwards. The value pushed on the stack is already aligned correctly for use with instructions like Ldind_I and Stind_I. The result is a transient pointer (type *).
The ldloca.s instruction provides an efficient encoding for use with the local variables 0 through 255.
The following Emit method overload can use the ldloca.s opcode:
ILGenerator.Emit(OpCode, byte)
Available since 8
.NET Framework
Available since 1.1
Portable Class Library
Supported in: portable .NET platforms
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.1
Windows Phone
Available since 8.1