user4388177
user4388177

Reputation: 2613

Skip current line in debugger

Is there any way of skipping the current line in the Visual Studio debugger using keyboard shortcuts?

The only way I was able to do it is using the yellow cursor on the left or "set next statement" which does not work at the end of a function.

Upvotes: 12

Views: 14905

Answers (1)

Marc Wittmann
Marc Wittmann

Reputation: 2671

The "Set Next Statement" (CTRL+SHIFT+F10) shortcut will work at the end of a function... but you need to use the mouse though as well.

Upvotes: 6

Related Questions