0

谷歌有一个指南,但描述得不好。 http://www.cprogramming.com/debugging/visual-studio-msvc-debugging-NoStepInto.html

4

1 回答 1

4

DebuggerStepThroughAttribute可以是您正在寻找的吗?

using System.Diagnostics;
class Foo
{
    [DebuggerStepThrough]
    int Bar()
    {
        return 10;
    }
}
于 2013-03-04T22:30:27.637 回答