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?
Thanks. I'm such a "Logger", the debugger skills are getting rusty.
tyndall
2009-01-15 01:17:21
What about an attribute for a property? [DebuggerStepThrough] is only valid on Classes, Structs, Constructors and Methods
Marchy
2009-09-08 21:31:02
It works on properties too... You have to apply it at the get/set level...
Andrew Rollings
2009-09-16 21:13:43