CSimpleArray::Add
Ajoute un nouvel élément au tableau.
BOOL Add(
const T& t
);
Paramètres
- t
L'élément à ajouter au tableau.
Valeur de retour
Retourne RECTIFIENT si l'élément est correctement ajouté au tableau, FALSE sinon.
Exemple
// Create an array of integers and add some elements
CSimpleArray<int> iMyArray;
for (int i = 0; i < 10; i++)
iMyArray.Add(i);
Configuration requise
Header: atlsimpcoll.h