Imagine you had a function that run for every item in a list, but you only care about the item with id 5. Is there a way to not touch the code and have to re-compile just to debug on the inside of an if statement... or is there a more debuggy immediate way.
I could do this:
if( id == 5 )
{
int a = -1; // Place breakpoint here
}
But it's annoying to re-compile just so I can sling a breakpoint on that line.
I really look forward to the answer on this!!!