1

如果函数 Foo() 调用调用函数 Baz() 的函数 Bar(),是否有一个属性或我可以添加到 Bar() 以指示调试器忽略 Bar() 中的代码并直接进入 Baz 中的代码() 而不进入 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();
}
4

1 回答 1

2

您可以使用DebuggerStepThroughAttribute来执行此操作。

[DebuggerStepThrough]
void Bar()
{ // I want to skip this function completely...
  Qux();
  Baz();
}
于 2012-09-28T16:04:38.183 回答