public ProxyConstructorImplementation GetConstructorImplementation(ConstructorInfo constructorInfo, ConstructorImplementationAnalysis analysis)
			{
				return myMockConstructors ? ProxyConstructorImplementation.DoNotCallBase
					: analysis.IsBaseVisible ? ProxyConstructorImplementation.CallBase
					: ProxyConstructorImplementation.SkipConstructor;
			}
 public ProxyConstructorImplementation GetConstructorImplementation(ConstructorInfo constructorInfo, ConstructorImplementationAnalysis analysis)
 {
     return(analysis.IsBaseVisible
                ? ProxyConstructorImplementation.CallBase
                : ProxyConstructorImplementation.SkipConstructor);
 }