Visual Studio 调试器的蓝色小箭头
Visual Studio Debugger's little blue arrow
这个蓝色小箭头是什么意思?
它会在我不希望的时候冻结我的 ASP.NET 程序的执行(注意 disabled 断点)。
任何关于这个小家伙代表什么的资源或澄清都将不胜感激。
你可能有一个 Debugger.Break();该行调用的函数或代码上的命令。查看此 了解更多信息。
编辑
@Thomas 的回答:
This line of code is currently executing, it calls something else,
e.g. native code or .NET internal code and an exception happens there.
You can see both arrows in the call stack window:
Perhaps you need to turn on "Show external code".
If you can't see the exception dialog, usually you can show it like
this:
Showing Exception in VS
这个蓝色小箭头是什么意思?
它会在我不希望的时候冻结我的 ASP.NET 程序的执行(注意 disabled 断点)。
任何关于这个小家伙代表什么的资源或澄清都将不胜感激。
你可能有一个 Debugger.Break();该行调用的函数或代码上的命令。查看此
编辑
@Thomas 的回答:
This line of code is currently executing, it calls something else, e.g. native code or .NET internal code and an exception happens there. You can see both arrows in the call stack window:
Perhaps you need to turn on "Show external code".
If you can't see the exception dialog, usually you can show it like this:
Showing Exception in VS