Expand Minimize
This topic has not yet been rated - Rate this topic

OpCodes.Ldloc_3 Field

May 02, 2013

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

Namespace:  System.Reflection.Emit
Assembly:  mscorlib (in mscorlib.dll)
'Declaration
Public Shared ReadOnly Ldloc_3 As OpCode

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)

Windows Phone OS

Supported in: 8.0, 7.1

Windows Phone

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.