Ever felt the need to dump an MFC array content to a debugger, it’s just so easy! Use AfxDump or afxDump!
Here is an e.g.
[sourcecode language=’cpp’]CArray
AfxDump( &IntArray ); // Or
#ifdef _DEBUG
afxDump << IntArray;
#endif[/sourcecode]
Ever felt the need to dump an MFC array content to a debugger, it’s just so easy! Use AfxDump or afxDump!
Here is an e.g.
[sourcecode language=’cpp’]CArray
AfxDump( &IntArray ); // Or
#ifdef _DEBUG
afxDump << IntArray;
#endif[/sourcecode]