System.Reflection.Emit.OpCodes.Ldlen Field

Pushes the number of elements of a zero-based, one-dimensional array onto the evaluation stack.

Syntax

public static readonly OpCode Ldlen

Remarks

The following table lists the instruction's hexadecimal and Microsoft Intermediate Language (MSIL) assembly format, along with a brief reference summary:

8E

ldlen

Pushes the length (of type natural unsigned int) of an array on the stack.

The stack transitional behavior, in sequential order, is:

[The 'ordered' type of list has not been implemented in the ECMA stylesheet.]

Arrays are objects and hence represented by a value of type O. The length is returned as a natural unsigned int.

NullReferenceException is thrown if the array reference is a null reference.

The following ILGenerator.Emit(OpCode) method overload can use the ldlen opcode:

  • ILGenerator.Emit(OpCode)

Requirements

Namespace: System.Reflection.Emit
Assembly: mscorlib (in mscorlib.dll)
Assembly Versions: 1.0.5000.0, 2.0.0.0, 4.0.0.0