SexyProxy.Fody.InPlaceClassWeaver.Finish C# (CSharp) 메소드

Finish() 보호된 메소드

protected Finish ( ) : void
리턴 void
        protected override void Finish()
        {
            if (!ContainsAbstractNonProxiedMethod)
                ProxyType.IsAbstract = false;

            // Ensure constructor is public (since it might be abstract with a protected constructor)
            ProxyType.GetConstructors().Single(x => !x.IsStatic).IsPublic = true;

            base.Finish();
        }