C# | Adding the specified key and value into HybridDictionary
HybridDictionary.Add(Object, Object) method is used to add an entry with the specified key and value into the HybridDictionary.
Syntax:
public void Add (object key, object value);
Parameters:
key : The key of the entry to add.
value : The value of the entry to add. The value can be null.
Exceptions:
- ArgumentNullException : If the key is null.
- ArgumentException : If an entry with the same key already exists in the HybridDictionary.
Below given are some examples to understand the implementation in a better way :
Example 1:
// C# code to add an entry with // the specified key and value // into the HybridDictionary. using System; using System.Collections; using System.Collections.Specialized; class GFG { // Driver code public static void Main() { // Creating a HybridDictionary named myDict HybridDictionary myDict = new HybridDictionary(); // Adding key/value pairs in myDict myDict.Add( "Australia" , "Canberra" ); myDict.Add( "Belgium" , "Brussels" ); myDict.Add( "Netherlands" , "Amsterdam" ); myDict.Add( "China" , "Beijing" ); myDict.Add( "Russia" , "Moscow" ); myDict.Add( "India" , "New Delhi" ); // To get count of key/value pairs in myDict Console.WriteLine( "Total key/value pairs in myDict are : " + myDict.Count); // Displaying the key/value pairs in myDict Console.WriteLine( "The key/value pairs in myDict are : " ); foreach (DictionaryEntry de in myDict) { Console.WriteLine(de.Key + " --> " + de.Value); } } } |
Output:
Total key/value pairs in myDict are : 6 The key/value pairs in myDict are : Australia --> Canberra Belgium --> Brussels Netherlands --> Amsterdam China --> Beijing Russia --> Moscow India --> New Delhi
Example 2:
// C# code to add an entry with // the specified key and value // into the HybridDictionary. using System; using System.Collections; using System.Collections.Specialized; class GFG { // Driver code public static void Main() { // Creating a HybridDictionary named myDict HybridDictionary myDict = new HybridDictionary(); // Adding key/value pairs in myDict myDict.Add( "I" , "first" ); myDict.Add( "II" , "second" ); myDict.Add( "III" , "third" ); myDict.Add( "IV" , "fourth" ); myDict.Add( "V" , "fifth" ); // To get count of key/value pairs in myDict Console.WriteLine( "Total key/value pairs in myDict are : " + myDict.Count); // Displaying the key/value pairs in myDict Console.WriteLine( "The key/value pairs in myDict are : " ); foreach (DictionaryEntry de in myDict) { Console.WriteLine(de.Key + " --> " + de.Value); } } } |
Output:
Total key/value pairs in myDict are : 5 The key/value pairs in myDict are : I --> first II --> second III --> third IV --> fourth V --> fifth
Note:
- An object that has no correlation between its state and its hash code value should typically not be used as the key. For example, String objects are better than StringBuilder objects for use as keys.
- A key cannot be null, but a value can.
- This method is an O(1) operation.
- When the number of elements becomes greater than the optimal size for a ListDictionary, the elements are copied from the ListDictionary to a Hashtable. However, this only happens once. If the collection is already stored in a Hashtable and the number of elements falls below the optimal size for a ListDictionary, the collection remains in the Hashtable.
Reference:
Please Login to comment...