In VS2015, how do I disable Step Into for auto-implemented properties?
Go to the VS2015 options -> debugging -> general and tick "Step over properties and operators".
just add the DebuggerStepThrough attribute to your function / class..
[DebuggerStepThrough]
public class DontDebugInterceptor : IInterceptor
{
// do something...
}