I guess the answer is 'no', but I decided to ask you guys :)
So, imagine i have the following code:
for (int i = 0; i < 1000; i++)
{
// Do something.
}
Let's say I've put a breakpoint inside VS on the line where the first curly brace is ("{"). I can go through all iterations of the for loop one by one, but imagine I'm interested in a particular one, for example, the 700th one. The only intuitive way I can think of is to remove this breakpoint and put one inside a code snippet that goes like:
if (i == 700)
{
// Add a breakpoint here.
}
So, my question is whether there is a better way to achieve this task? :)