System.Diagnostics.DebuggerStepThrough

<System.Diagnostics.DebuggerStepThrough()>

If you have some shared method that your code calls often (maybe something in a DAL) that performs some common task for you that you would rather not have to step through in the IDE all the time, simply add this attribute to the method sig and VS.NET will skip it!

MSDN on it here

No Comments