Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Step out of a loop in Visual Studio's debugger

Is there a similar functionality like the step out of a function to step out of a loop?

I am currently using VS2005, but am interested to know whether MS presented the option in any of the versions.

like image 507
Shaihi Avatar asked Jul 18 '10 08:07

Shaihi


1 Answers

No, there isn't such functionality in any version of VS.Net to date. Setting a breakpoint after the loop or using 'Run to cursor' are both reasonable workarounds.

like image 96
Will A Avatar answered Oct 04 '22 19:10

Will A