Returns the number of array elements.
INT_PTR GetCount( ) const;
Return Value
The number of items in the array.
Remarks
Call this method to retrieve the number of elements in the array. Because indexes are zero-based, the size is 1 greater than the largest index.
The following table shows other member functions that are similar to CObArray::GetCount.
| Class | Member Function | 
|---|---|
| INT_PTR GetCount( ) const; | |
| INT_PTR GetCount( ) const; | |
| INT_PTR GetCount( ) const; | |
| INT_PTR GetCount( ) const; | |
| INT_PTR GetCount( ) const; | |
| INT_PTR GetCount( ) const; | 
Example
See CObList::CObList for a listing of the CAge class used in all collection examples.
CObArray myArray;
// Add elements to the array.
for (int i = 0; i < 10; i++)
   myArray.Add(new CAge(i));
// Add 100 to all the elements of the array.
for (int i = 0; i < myArray.GetCount(); i++)
{
   CAge*& pAge = (CAge*&) myArray.ElementAt(i);
   delete pAge;
   pAge = new CAge(100 + i);
}
Requirements
Header: afxcoll.h