Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Do we have Quick Watch in visual studio 2010 express?

I could not find Quick Watch in visual studio 2010 express. Do we only have the option for watch option and not quick watch in express editions?

like image 390
Pawan Pillai Avatar asked Dec 21 '22 22:12

Pawan Pillai


1 Answers

No, the Quickwatch feature is not available in Express editions of Visual Studio.

  • It is a myth that it is only available from C++. Here is a screenshot from Visual Studio 2010 Professional, showing the QuickWatch in use for an ASP.NET C# project:

    enter image description here

  • It is a myth that the key can be manually bound in Express editions. The command Debug.QuickWatch, while available in for-pay versions of Visual Studio:

    enter image description here

    is not available in Express editions (tested in 2008, 2010, 2012):

    enter image description here

  • it is a myth that pressing Shift+F9 will make the QuickWatch window appear in Express editions

  • it is a myth that selecting

    2010 Express: Tools -> Import and Export settings -> Reset All settings
    2012 Express: Tools -> Settings -> Reset

    will restore the ability to have a QuickWatch in Express editions.


From MSDN: How to: Use the QuickWatch Dialog Box

Visual Studio Edition  Visual Basic  C#   C++  J#
=====================  ============  ===  ===  ===
Express                No            No   No   No
Standard               No            No   No   No
Pro/Team               Yes           Yes  Yes  Yes

Some users might, therefore, wonder why QuickWatch is useful. Why not simply add the variable or expression to the Watch window? Well, you could do that, but suppose you simply want to do a quick scratch calculation involving one or more variables? You don't want to clutter up the Watch window with such calculations. That's where QuickWatch comes in.

Another nice feature of the QuickWatch dialog box is the fact that it's resizable. If you want to look at the members of a large object, it's often easier to expand and look at the tree QuickWatch than it is in the Watch, Locals, or Autos window.

like image 74
Ian Boyd Avatar answered Dec 26 '22 00:12

Ian Boyd