vote up 1 vote down star
1

When debugging, a trick I do whenever I want to exit the current method without running of its any statements, I move the current execution pointer to the end of the method, then click F10/11.

Is there a keyboard shortcut (or can I program one) to accomplish this?

(I don't mean shift-F11 (step out) - that does run all the code until the method's end, which I do not want).

flag

63% accept rate

2 Answers

vote up 2 vote down check

The following sequence of keystrokes works for me (tested in Visual Studio 2008); I was able to record them as a temporary macro and play them back successfully:

  1. Ctrl+M, Ctrl+M (Edit.ToggleOutliningExpansion: collapses the current method)
  2. Right arrow (skips past the collapsed parameter list)
  3. Ctrl+] (Edit.GotoBrace: goes to the opening brace)
  4. Ctrl+] (Edit.GotoBrace: goes to the closing brace)
  5. Ctrl+Shift+F10 (Debug.SetNextStatement: sets the next statement to the closing brace at the end of the function)
  6. F10 (Debug.StepOver: leaves the method)
link|flag
(This doesn't work on VS2005 btw - I get "unable to set the next statement to this location the next statement cannot be set to another function") – ripper234 Oct 21 '08 at 11:24
vote up 0 vote down

AFAIK that's the only way to do it.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.