Boo.Lang.Compiler.Steps.ProcessMethodBodies.IsInaccessible C# (CSharp) Method

IsInaccessible() private method

private IsInaccessible ( IEntity info ) : bool
info IEntity
return bool
        bool IsInaccessible(IEntity info)
        {
            var accessible = info as IAccessibleMember;
            if (accessible != null && accessible.IsPrivate && accessible.DeclaringType != CurrentType)
                return true;
            return false;
        }
ProcessMethodBodies