Is there an attribute I can use on a method so that when stepping through some code in Debug mode the Debugger stays on the outside of the method?

link|improve this question

71% accept rate
feedback

2 Answers

up vote 39 down vote accepted
 [DebuggerStepThrough]

(linky)

link|improve this answer
Thanks. I'm such a "Logger", the debugger skills are getting rusty. – brun Jan 15 '09 at 1:17
What about an attribute for a property? [DebuggerStepThrough] is only valid on Classes, Structs, Constructors and Methods – Marchy Sep 8 '09 at 21:31
9  
It works on properties too... You have to apply it at the get/set level... – Andrew Rollings Sep 16 '09 at 21:13
feedback

Not forgetting to add:

using System.Diagnostics;

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.