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

IsModule() private static method

private static IsModule ( Type type ) : bool
type System.Type
return bool
        private static bool IsModule(Type type)
        {
            return type.IsClass
                && type.IsSealed
                && !type.IsNestedPublic
                && HasModuleMarkerAttribute(type);
        }