Is there a way to watch all variables when debugging in Visual Studio 2012, how can I do this 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 in VS 2012 (the Autos window is not enough). Help is much appreciated. EDIT: all variables mean variables that have already been declared in the code, for example:
Class Example Dim i as Integer Sub test() Dim a as String Dim b as Double End Sub End Class
When I enter the test () Autos window, i is no longer displayed.
source share