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

IsPublicEvent() private static method

private static IsPublicEvent ( IEntity tag ) : bool
tag IEntity
return bool
        private static bool IsPublicEvent(IEntity tag)
        {
            return (EntityType.Event == tag.EntityType) && ((IMember)tag).IsPublic;
        }
ProcessMethodBodies