System.Web.Mvc.TypeCacheUtil.TypeIsPublicClass C# (CSharp) Method

TypeIsPublicClass() private static method

private static TypeIsPublicClass ( Type type ) : bool
type Type
return bool
        private static bool TypeIsPublicClass(Type type)
        {
            return (type != null && type.IsPublic && type.IsClass && !type.IsAbstract);
        }
    }