views:

115

answers:

2

When I want to debug a .net console application, what process do I attach to?

+8  A: 

You attach to the application process itself. A console application is no different from a winforms or wpf application in that sense.

Fredrik Mörk
+2  A: 

You should attach to the name of the process you want to debug. Typically this is the same name as the name of the project when opened in Visual Studio.

JaredPar