Turn off "Step into:.." Immediate Window in VisualStudio while debugging

vb.net, visual-studio

Solution

Try `Options` -> `Debugging` -> `Output Window` -> `General Output Settings` -> `Step Filtering Messages`. It's turned on by default.

Problem

Ever since VS2010 when I step through code using F8 I get uncessary text in the debuger that I did not get in VS2008. All I want to see is the results, not the "Step into:.." I tried setting different options in the debugger settings but nothing seemed to work. For example: ``` For i As Integer = 0 To 2 Debug.Print(i) Next ``` Immediate Window when using the F8 key currently: ``` 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 ``` It used to show just results when using the F8 key: ``` 0 1 2 ```

Original source