Share via


ArrayList.Count Property

Gets the number of objects that the ArrayList collection actually contains.

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

Syntax

public virtual int Count { get; }

Property Value

The number of objects that the ArrayList actually contains.

Remarks

The Count property denotes the number of objects that the ArrayList collection actually contains. The Capacity property denotes the maximum number of objects that the ArrayList collection is capable of storing. By definition, the value of Capacity is always greater than or equal to the value of Count. If the Count value surpasses the Capacity value while objects are being added to the collection, the capacity of the list is automatically doubled.

Version Information

Available in the .NET Micro Framework versions 2.0, 2.5, 3.0, 4.0, 4.1, and 4.2.

See Also

Reference

ArrayList Class
ArrayList Members
System.Collections Namespace