CObArray::Append

int Append( const CObArray& src );

Return Value

The index of the first appended element.

Parameters

src

Source of the elements to be appended to the array.

Remarks

Call this member function to add the contents of another array to the end of the given array. The arrays must be of the same type.

If necessary, Append may allocate extra memory to accommodate the elements appended to the array.

The following table shows other member functions that are similar to CObArray::Append.

Class Member Function
CByteArray int Append( const CByteArray& src );
CDWordArray int Append( const CDWordArray& src );
CPtrArray int Append( const CPtrArray& src );
CStringArray int Append( const CStringArray& src );
CUIntArray int Append( const CUIntArray& src );
CWordArray int Append( const CWordArray& src );

CObArray OverviewClass MembersHierarchy Chart

See Also   CObArray::Copy