public static SmallMobileBulkEntry[] GetEntries(string type, string name)
        {
            if (m_Cache == null)
            {
                m_Cache = new Hashtable();
            }

            Hashtable table = (Hashtable)m_Cache[type];

            if (table == null)
            {
                m_Cache[type] = table = new Hashtable();
            }

            SmallMobileBulkEntry[] entries = (SmallMobileBulkEntry[])table[name];

            if (entries == null)
            {
                table[name] = entries = SmallMobileBulkEntry.LoadEntries(type, name);
            }

            return(entries);
        }