Boo.Lang.Compiler.TypeSystem.Reflection.ReflectionNamespace.HasModuleMarkerAttribute C# (CSharp) Method

HasModuleMarkerAttribute() private static method

private static HasModuleMarkerAttribute ( Type type ) : bool
type System.Type
return bool
        private static bool HasModuleMarkerAttribute(Type type)
        {
            return MetadataUtil.IsAttributeDefined(type, Types.ModuleAttribute)
                || MetadataUtil.IsAttributeDefined(type, Types.ClrExtensionAttribute);
        }