OpCodes.Ldlen Field
Pushes the number of elements of a zero-based, one-dimensional array onto the evaluation stack.
Assembly: mscorlib (in mscorlib.dll)
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 |
|---|---|---|
|
8E |
ldlen |
Pushes the length (of type natural unsigned int) of an array on the stack. |
The stack transitional behavior, in sequential order, is:
-
An object reference to an array is pushed onto the stack.
-
The array reference is popped from the stack and the length is computed.
-
The length is pushed onto the stack.
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 Emit method overload can use the ldlen opcode:
-
ILGenerator.Emit(OpCode)
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.