Is there a way to watch all variables when debugging in Visual Studio 2012 like i can do it in IntelliJ Idea 12? I have a window with all the variables(both global and local) when debugging in Idea and i want the same thing in VS 2012 (Autos window is not enough) . Help is very much appreciated. EDIT: All variables means variables that were already declared in code like:
Class Example
Dim i as Integer
Sub test()
Dim a as String
Dim b as Double
End Sub
End Class
When I enter test() Autos window no longer displays i.