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

AssertLinked() private method

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