我在左支撑上添加一个断点,如下所示
catch
{ //I have a break point here
somecode; //the break point skip to this line where I press F5 to start debug
}
VS2010中的这种行为,是否有任何选项可以配置它?
答案 0 :(得分:0)
没有与该行相关联的字节代码
{
所以你不能在那里设置一个断点。但行为是一样的。当您点击断点时,执行将在执行该行之前停止。