Reputation: 447
I try to find out whether it is possible to skip(not running) a line(s) code during debugging, I have went through the "Debug" menu on the Visual Studio(2010), but I could not find anything similar.
I'm not looking for "Step Over",
Upvotes: 1
Views: 91
Reputation: 12375
Set Next Statement is the command name. You can find more details in the MSDN article.
CTRL+SHIFT+F10 is the keyboard shortcut, or you can right click in the code window to get the context menu showing this command on the desired line of code to skip to.
Upvotes: 2
Reputation: 40970
I would say click on the arrow button =>
and drag to the next statement from which you want to resume the execution.
Upvotes: 5
Reputation: 154995
Upvotes: 1
Reputation: 152501
You can either drag the yellow arrow on the left to the next statement you want to execute, or put the cursor on that statement, right-click, and select "Set Next Statement"
Upvotes: 1