启动调试时,括号中的Visual Studio 2010断点将跳到下一个代码行

时间:2014-10-12 17:25:38

标签: visual-studio-2010 debugging

我在左支撑上添加一个断点,如下所示

catch
{   //I have a break point here
    somecode; //the break point skip to this line where I press F5 to start debug
}

VS2010中的这种行为,是否有任何选项可以配置它?

1 个答案:

答案 0 :(得分:0)

没有与该行相关联的字节代码

{

所以你不能在那里设置一个断点。但行为是一样的。当您点击断点时,执行将在执行该行之前停止。