Often times I add a breakpoint at a line in a loop and keep playing the to the next loop until I find the desired execution loop. And I might have to do this repeatedly to find the next possible error in the loop. I either count the number of times I hit the play button (F8) or identify a variable to add conditional breakpoint.
Is there a way to identify the number of time a breakpoint is hit? can I add a "watch" expression to get this?
This would help me if I have to debug the same line in multiple debugging sessions after changing something.
