예제 #1
0
        private static Hashtable GetNamesHash(DataTable table)
        {
            Hashtable hashtable = new Hashtable(StringComparer.OrdinalIgnoreCase);

            if (table == null)
            {
                return(hashtable);
            }
            AdomdUtils.FillNamesHashTable(table, hashtable);
            return(hashtable);
        }
예제 #2
0
        private static Hashtable GetNamesHash(DataTable table)
        {
            Hashtable hashtable = new Hashtable();

            if (table == null)
            {
                return(hashtable);
            }
            AdomdUtils.FillNamesHashTable(table, hashtable);
            return(hashtable);
        }
예제 #3
0
 internal static void FillNamesHashTable(DataTable table, Hashtable hash)
 {
     AdomdUtils.FillNamesHashTable(table, hash, 0);
 }