Boo.Lang.Compiler.Steps.ProcessMethodBodies.IsPublicEvent C# (CSharp) Метод

IsPublicEvent() приватный статический Метод

private static IsPublicEvent ( IEntity tag ) : bool
tag IEntity
Результат bool
        private static bool IsPublicEvent(IEntity tag)
        {
            return (EntityType.Event == tag.EntityType) && ((IMember)tag).IsPublic;
        }
ProcessMethodBodies