English 中文(简体)
B. 规定休息点和叫DebugBreak()之间的区别
原标题:Difference between putting a break point and calling DebugBreak()
  • 时间:2011-09-10 08:26:33
  •  标签:
  • debugging

是否有任何人知道使用破碎点和叫DebugBreak()之间的区别,例如在窗户平台上?

最佳回答

The obvious difference is that putting a breakpoint in is an interactive process - it has to be done manually (by each developer who wants to break at a certain point). This is flexible, but manual.

另一方面,正如<代码>DebugBreak> 是programmatic的,这意味着它影响到通过该守则操作的(如果你总是希望开发商在那个时候停止使用,因为这意味着有点“<>about错”,但你未能在守则执行过程中灵活地增加突破点。

每一种技术都使用——我个人经常不使用方案强制规定的切除点。

问题回答

暂无回答




相关问题
Eclipse: Hover broken in debug perspective

Since upgrading Eclipse (Galileo build 20090920-1017), hover in debug no longer displays a variable s value. Instead, hover behaves as if I were in normal Java perspective: alt text http://...

IIS 6.0 hangs when serving a web-service

I am having issues with one of our web-services. It works fine on my development machine (win XP) whether I host it as a separate application or using cassini from Visual studio. Once I deploy on the ...

Tips for debugging a made-for-linux application on windows?

I m trying to find the source of a bug I have found in an open-source application. I have managed to get a build up and running on my Windows machine, but I m having trouble finding the spot in the ...

Asp.Net MVC - Problem returning a model to the view

I ve recently started using the Areas functionality of the Preview2 and it was working ok until I needed to return a Model to the view. Controller: public ActionResult ForgotPassword() { return ...

Unable to generate PDB files in Visual Studio 2005

For most assemblies, I m able to generate their respective .pdb files. However, I ve got one project that isn t generating their .pdb files. I ve made sure that it on debug mode and that the project ...

热门标签