Visual Studio - Debugging dialog
i get this dialog while debugging code in visual studio 2008.
(your step-into request resulted in an automatic step-over)
alt text http://www.freeimagehosting.net/uploads/69a123b9e7.jpg
开发者_如何学GoAny Ideas?
It means that the option 'Step over properties and operators' in Tools / Options / Debugging / General is active.
You get the dialog box when you press F11 to enter into the code of a property and this option is active.
The debugger is hiding (stepping over) the internal functionality of a class property (i.e. get/set). If you would like to step through the property's accessor functionality you must unched the box next to "Step over properties and operators" found in:
Tools->Options->Debugging->General
精彩评论