Boo.Lang.Compiler.TypeSystem.Reflection.ReflectionNamespace.HasModuleMarkerAttribute C# (CSharp) 메소드

HasModuleMarkerAttribute() 개인적인 정적인 메소드

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