Gets the number of elements actually contained in the ArrayList.
Assembly: mscorlib (in mscorlib.dll)
Syntax . . :: . Count
Public Overridable ReadOnly Property Count As Integer
Getpublic virtual int Count { get; }public:
virtual property int Count {
int get ();
}abstract Count : int
override Count : intImplements
ICollection Remarks
Capacity is the number of elements that the ArrayList can store. Count is the number of elements that are actually in the ArrayList.
Capacity is always greater than or equal to Count. If Count exceeds Capacity while adding elements, the capacity is automatically increased by reallocating the internal array before copying the old elements and adding the new elements.
Retrieving the value of this property is an O(1) operation.
Platforms
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.