OpCodes::Stloc_2 Field
Pops the current value from the top of the evaluation stack and stores it in a the local variable list at index 2.
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 |
|---|---|---|
0C | stloc.2 | Pops a value from the stack into local variable 2 |
The stack transitional behavior, in sequential order, is:
A value is popped off of the stack and placed in the local variable indexed by 2.
The stloc.2 instruction pops the top value off the evaluation stack and moves it into the local variable indexed by 2. The type of the value must match the type of the local variable as specified in the current method's local signature.
stloc.2 is an especially efficient encoding for storing values in local variable 2.
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.2 opcode:
ILGenerator.Emit(OpCode)
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