You are here: Elements > Methods > CString and CArray Objects

CString and CArray Objects

Methods make use of objects from two Microsoft Foundation Classes (MFC), CString and CArray. For information about such objects please refer to Microsoft's documentation. In addition, some types based on CArray are defined. These are:

typedef CArray<CString,CString&> AString;

typedef CArray<int,int> Aint;

typedef CArray<UINT,UINT> Auint;

typedef CArray<__int64,__int64&> Aint64;

typedef CArray<UCHAR,UCHAR> Abyte;

typedef CArray<unsigned short,unsigned short> Aushort;

typedef CArray<void*,void*> Apvoid;

typedef CArray<bool,bool> Abool;