Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to view debugging output in Visual Studio 2010?

How can I set Visual Studio to provide a similar level of debugging output to Aptana Studio 3? I am using Visual Studio 2010, C# 4.0, and Windows Phone 7.1.

I am looking to have it output all of the debug information to the console automatically without me having to tell it to - like Aptana.

like image 329
Chris Avatar asked Nov 26 '22 23:11

Chris


1 Answers

enter image description here

If you want to see variable values while debugging the application you can use "Quick Watch", "Add Watch" or Autos.

In Visual Studio 2010, the Autos Window displays variables on the current line and one line above and below.

Look at here for more debugging window help.

like image 52
CharithJ Avatar answered Dec 06 '22 19:12

CharithJ