Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

Array::GetLongLength Method (Int32)

 

Gets a 64-bit integer that represents the number of elements in the specified dimension of the Array.

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

public:
[ComVisibleAttribute(false)]
long long GetLongLength(
	int dimension
)

Parameters

dimension
Type: System::Int32

A zero-based dimension of the Array whose length needs to be determined.

Return Value

Type: System::Int64

A 64-bit integer that represents the number of elements in the specified dimension.

Exception Condition
IndexOutOfRangeException

dimension is less than zero.

-or-

dimension is equal to or greater than Rank.

An example of GetLongLength is GetLongLength(0), which returns the number of elements in the first dimension of the Array.

This method is an O(1) operation.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft