IKVM.Internal.MethodWrapper.AssertLinked C# (CSharp) Method

AssertLinked() private method

private AssertLinked ( ) : void
return void
        internal void AssertLinked()
        {
            if(!(parameterTypeWrappers != null && returnTypeWrapper != null))
            {
                Tracer.Error(Tracer.Runtime, "AssertLinked failed: " + this.DeclaringType.Name + "::" + this.Name + this.Signature);
            }
            Debug.Assert(parameterTypeWrappers != null && returnTypeWrapper != null, this.DeclaringType.Name + "::" + this.Name + this.Signature);
        }