OpCodes.Ldloc_3 Field

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Loads the local variable at index 3 onto the evaluation stack.

Namespace:  System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)

Syntax

Public Shared ReadOnly Ldloc_3 As OpCode
public static readonly OpCode Ldloc_3

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

09

ldloc.3

Loads the local variable at index 3 onto the evaluation stack.

The stack transitional behavior, in sequential order, is:

  1. The local variable value at the index 3 is pushed onto the stack.

ldloc.3 is an especially efficient encoding for Ldloc, allowing access to the local variable at index 3.

The type of the value is the same as the type of the local variable, which is specified in the method header. 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 overload can use the ldloc.3 opcode:

  • ILGenerator.Emit(OpCode)

Version Information

Windows Phone OS

Supported in: 8.1, 8.0, 7.1

Platforms

Windows Phone

See Also

Reference

OpCodes Class

System.Reflection.Emit Namespace