Visual Studio supports us to debug line by line or jump straight to anywhere with break point. But for example,
for (int i = 0; i < 100000; i++)
{
//DO SOMETHING HERE
}
How can I jump immediately to 500th loop? The fastest I have found so far was set break point at the begin of the loop and press F5
for multiple times.
I'm using Visual Studio 2019.