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?


 [DebuggerStepThrough]

(docs)


Not forgetting to add:

using System.Diagnostics;