为什么VS中的断点需要这么长时间?

时间:2016-01-13 06:02:08

标签: c# debugging

我正在尝试调试我的C#应用​​程序,但是在将library(dplyr) inner_join(df1, df2) ## Joining by: c("A", "B") ## A B ## 1 10 a ## 2 30 c ## 3 10 a ## Warning message: ## In inner_join_impl(x, y, by$x, by$y) : ## joining factors with different levels, coercing to character vector 进程附加到VS后,需要很长时间(超过10分钟)才能达到我的断点。

我检查了输出控制台,发现它一直在打印。

exe

如果我没有设置断点,那么效果很好。

更新

如果我将以下代码段添加到我要设置断点的行,则会很快被点击。

 A first chance exception of type 'System.ArgumentException' occurred in System.Data.dll

为此,我必须删除所有断点。

但是设置更多断点并不是那么方便。

任何帮助将不胜感激! 谢谢!

0 个答案:

没有答案