OpCodes.Stloc_3 Field

Definition

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

public: static initonly System::Reflection::Emit::OpCode Stloc_3;
public static readonly System.Reflection.Emit.OpCode Stloc_3;
 staticval mutable Stloc_3 : System.Reflection.Emit.OpCode
Public Shared ReadOnly Stloc_3 As OpCode 

Field Value

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
0D stloc.3 Pops a value from the stack into local variable 3

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 3.

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

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

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.3 opcode:

Applies to