Let's say I have
int a()
{
/* Tons of code
....*/
return someInt;
}
void main()
{
/* Tons of code
....*/
int k = a();
/* Tons of code
....*/
}
Next, lets pretend that I'm debugging one step at a time and about to go into the
int k = a();
statement but that I just want it executed without stepping through a() manually. Is there something I can do instead of F11 so it executes until the next statement in the method.
Right now I set a breakpoint after the call to a(), but I'm thinking there may be a better way.