Posts

Showing posts from May 2, 2012

Step through the class while debugging in c#

You can use [DebuggerStepThroughAttribute] attribute before class declaration and this attribute instruct the debugger not to debug the code in this class. This is the best thing to hide your code while debugging. For more reference http://msdn.microsoft.com/en-us/library/system.diagnostics.debuggerstepthroughattribute.aspx