ninject interceptor - helper methods
问题 I have a simply interface: public interface ITest { void Method1(); void Method2(); } and implementation: public class Test:ITest { public void Method1() { } public void Method2() { //Method1(); } } The custom interceptor: public class CustomInterceptor:IInterceptor { public void Intercept(IInvocation invocation) { invocation.Proceed(); } } Now, when I execute there two methods: ITest obj = getting through ninject obj.Method1(); obj.Method2(); my interceptor is calling twice what is ok. But