Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,900 questions

51,831 answers

573 users

How to assign a new value to Hashtable without using the Add method in C#

1 Answer

0 votes
using System;
using System.Collections;

class Program
{
    static void Main()
    {
        // Create a new hashtable
        Hashtable hashtable = new Hashtable();

        // Assign a value to a key
        hashtable["key1"] = "value1";

        // Update the value for the same key
        hashtable["key1"] = "newValue1";
        
        // Assign a new value to a key
        hashtable["key2"] = "value2";

        Console.WriteLine(hashtable["key1"]);
        Console.WriteLine(hashtable["key2"]);
        
        foreach (DictionaryEntry dic in hashtable) {
            Console.WriteLine("{0}, {1}", dic.Key, dic.Value);
        }
    }
}

 
 
/*
run:
     
newValue1
value2
key2, value2
key1, newValue1
     
*/
 

 



answered Feb 28, 2025 by avibootz

Related questions

1 answer 94 views
2 answers 189 views
1 answer 165 views
1 answer 190 views
190 views asked Feb 20, 2017 by avibootz
1 answer 89 views
...