What is the syntax and which namespace/class needs to be imported? Give me sample code if possible. It would be of great help.

link|improve this question

17% accept rate
feedback

4 Answers

I also like to check to see if the debugger is attached - if you call Debugger.Break when there is no debugger, it will prompt the user if they want to attach one. Depending on the behavior you want, you may want to call Debugger.Break() only if (or if not) one is already attached

using System.Diagnostics;

//.... in the method:

if( Debugger.IsAttached) //or if(!Debugger.IsAttached)
{
  Debugger.Break();
}
link|improve this answer
feedback

Put the following where you need it:

System.Diagnostics.Debugger.Break();
link|improve this answer
feedback

http://msdn.microsoft.com/en-us/library/system.diagnostics.debugger.break.aspx

#if DEBUG
  System.Diagnostics.Debugger.Break();
#endif
link|improve this answer
feedback

you can use System.Diagnostics.Debugger.Break() to break in a specific place.. this can help in situations like debugging a service.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.