If function Foo() calls function Bar() which calls function Baz(), is there an attribute or something I can add to Bar() to instruct the debugger to ignore the code in Bar() and step directly to the code in Baz() without also stepping into the code in Qux()?
void Foo(){
Bar(); // If start debugging here...
}
void Bar(){ // I want to skip this function completely...
Qux();
Baz();
}
void Baz(){ // And step to here.
Zab();
}
You can use DebuggerStepThroughAttribute to do this.