Click or drag to resize

EAPCollectionBaseCount Property

The number of elements actually contained in the ArrayList.

Namespace:  NetQuarry
Assembly:  EAP.Core (in EAP.Core.dll) Version: 2.0.0.0 (4.6.8.0)
Syntax
public int Count { get; }

Property Value

Type: Int32

Implements

ICollectionCount
Remarks
Count is the number of elements that are actually in the ArrayList. Capacity is the number of elements that the ArrayList is capable of storing. Count is always less than or equal to Capacity. If Count exceeds Capacity while adding elements, the capacity of the list is doubled by automatically reallocating the internal array before copying the old elements and adding the new elements.
See Also