public void Setup()
 {
     manualNoInliningProxy = new ManualNoInliningRefProxy(new FooWithReferenceType());
     lightInjectProxy      = CreateLightInjectInterfaceProxy <IFooWithReferenceType>(new FooWithReferenceType());
     castleProxy           = CreateCastleInterfaceProxy <IFooWithReferenceType>(new FooWithReferenceType());
     linFuProxy            = CreateLinFuInterfaceProxy <IFooWithReferenceType>(new FooWithReferenceType());
     dispatchProxy         = CreateDispatchInterfaceProxy <IFooWithReferenceType>(new FooWithReferenceType());
 }
 public ManualNoInliningRefProxy(IFooWithReferenceType target) => this.target = target;