private static Hashtable GetNamesHash(DataTable table, int firstPropertyOffSet)
        {
            Hashtable hashtable = new Hashtable();

            if (table == null)
            {
                return(hashtable);
            }
            AdomdUtils.FillPropertiesNamesHashTable(table, hashtable, firstPropertyOffSet);
            return(hashtable);
        }