Powered by |
Debugging in Visual Studio - getting started.Usually, newbie is in a hurry to build his own application and make it working and, of course use the debug features of the DE skin-deep. As a feedback he fails to fix some problem because even can't find out the reason. Let's try to find out how really the Visual Studio can help us. Under MSVC debugger you can:
First, be aware there is a stand alone ![]() as well as Options/Debug tab page in MSVC ![]() You can inspect variables and whole structures in Watch or Variables windows. You can expand structures and classes to see member values. More over it's possible to make you own output format for the objects viewed! Find a file It looks like this. For instance, I added a line to check STLPort's strings: _STL::_String_base<*> = <_M_start,s> (For details see http://www.codeguru.com/debug/autoexp.shtml) In Watch window you can use ![]()
|