Hashtable hList = new Hashtable(); for (int item= 0; item< ConfigurationManager.AppSettings.Count; item++) { hList.Add(ConfigurationManager.AppSettings.AllKeys[item].ToString(), ConfigurationManager.AppSettings[item]); }
Login to post response