I am using AOP framework SNAP to intercept my methods. Every time i am in debug and stepping through code it enters the interceptor. How can I surpass (ignore) this interceptor so when I do F11 (step into) my method, I go straight to my method not first the interceptor.
Is there a visual studio setting to allow bypassing some methods when debugging?
Have you tried decorating your interceptor class or method with the DebuggerStepThroughAttribute?