Reputation: 4975
what is the difference between start Debugging and Start Without Debugging in Visual Studio while running a program ?
Upvotes: 1
Views: 350
Reputation: 6859
The former attaches the debugger, the latter does not. You use the latter if you want to run in the same way an end user would.
Upvotes: 1
Reputation: 186068
The first option starts the program under the control of Visual Studio's debugger. The second option starts the program stand-alone. Some of the practical differences while debugging a process are:
Upvotes: 4
Reputation: 36896
the answer seems obvious, especially if you just try it :)
"Start without debugging" starts your app but doesn't attach visual studio as the debugger. "Start debugging" starts your app, with visual studio attached as the debugger.
Upvotes: 0