What’s the difference between
Debugger.Launch();
Debugger.Break();
?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Reading the documentation, it sounds like
Launchdoes nothing if the debugger is attached – it doesn’t actually break (although I haven’t verified this).Breakasks to launch the debugger (if not attached), and does do the break.In reality, it is unlikely you’d have more than one
Launchpoint… if that.