What process am I connecting for the console application?

When I want to debug a .net console application, which process to connect to?

+2


source to share


2 answers


You are joining the application itself. A console application is no different from a winforms or wpf application in this sense.



+9


source


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



+2


source







All Articles