Visual Studio 2010 - Visual C++
AfxDump (MFC)
Call this function while in the debugger to dump the state of an object while debugging.
void AfxDump( const CObject* pOb );
Parameters
Remarks
AfxDump calls an object's Dump member function and sends the information to the location specified by the afxDump variable. AfxDump is available only in the Debug version of MFC.
Your program code should not call AfxDump, but should instead call the Dump member function of the appropriate object.
Requirements
Header: afx.h
See Also