I want to store multiple values in single key like:
HashTable obj = new HashTable(); obj.Add(\"1\", \"test\"); obj.Add(\"1\", \"Test1\");
Right
You can use NameValueCollection - works the same as hashtable and has the "GetValues()".