Search code examples
c#.netdebuggingattributes

Attribute to Skip over a Method while Stepping in Debug Mode


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?


Solution

  •  [DebuggerStepThrough]
    

    (docs)