4

从 VS2010 开始,当我使用 F8 单步执行代码时,我在调试器中得到了在 VS2008 中没有的不必要的文本。我只想看到结果,而不是“步入:..”我尝试在调试器设置中设置不同的选项,但似乎没有任何效果。

例如:

 For i As Integer = 0 To 2
     Debug.Print(i)
 Next

当前使用 F8 键时的立即窗口:

Step into: Stepping over non-user code 'System.Diagnostics.Debug.Print'
0
Step into: Stepping over non-user code 'System.Diagnostics.Debug.Print'
1
Step into: Stepping over non-user code 'System.Diagnostics.Debug.Print'
2

使用 F8 键时,它曾经只显示结果:

0
1
2
4

1 回答 1

7

试试Options-> Debugging-> Output Window-> General Output Settings-> Step Filtering Messages。默认情况下已打开。

于 2012-08-10T12:49:33.680 回答