IKVM.Reflection.Type.CheckVisibility C# (CSharp) Method

CheckVisibility() private method

private CheckVisibility ( TypeAttributes access ) : bool
access TypeAttributes
return bool
        private bool CheckVisibility(TypeAttributes access)
        {
            return (Attributes & TypeAttributes.VisibilityMask) == access;
        }