The following table lists the instruction's hexadecimal and Microsoft Intermediate Language (MSIL) assembly format, along with a brief reference summary:
09 |
ldloc.3 |
Loads the local variable at index 3 onto the evaluation stack. |
The stack transitional behavior, in sequential order, is:
[The 'ordered' type of list has not been implemented in the ECMA stylesheet.]ldloc.3 is an especially efficient encoding for OpCodes.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 ILGenerator.Emit(OpCode) method overload can use the ldloc.3 opcode:
ILGenerator.Emit(OpCode)