C# में Dictionary.Add () विधि का उपयोग डिक्शनरी में एक निर्दिष्ट कुंजी और मान जोड़ने के लिए किया जाता है।
सिंटैक्स
निम्नलिखित वाक्य रचना है -
public void Add (TKey key, TValue val);
ऊपर, कुंजी पैरामीटर कुंजी है, जबकि वैल तत्व का मान है।
उदाहरण
आइए अब डिक्शनरी को लागू करने के लिए एक उदाहरण देखें। जोड़ें () विधि -
using System; using System.Collections.Generic; public class Demo { public static void Main(){ Dictionary<string, string> dict = new Dictionary<string, string>(); dict.Add("One", "John"); dict.Add("Two", "Tom"); dict.Add("Three", "Jacob"); dict.Add("Four", "Kevin"); dict.Add("Five", "Nathan"); Console.WriteLine("Key/value pairs..."); foreach(KeyValuePair<string, string> res in dict){ Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value); } } }
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Key/value pairs... Key = One, Value = John Key = Two, Value = Tom Key = Three, Value = Jacob Key = Four, Value = Kevin Key = Five, Value = Nathan
उदाहरण
आइए अब डिक्शनरी को लागू करने के लिए एक और उदाहरण देखें। जोड़ें () विधि -
using System; using System.Collections.Generic; public class Demo { public static void Main(){ Dictionary<string, string> dict = new Dictionary<string, string>(); dict.Add("One", "John"); dict.Add("Two", "Tom"); dict.Add("Three", "Jacob"); dict.Add("Four", "Kevin"); dict.Add("Five", "Nathan"); Console.WriteLine("Count of elements = "+dict.Count); dict.Add("Six", "Anne"); dict.Add("Seven", "Katie"); Console.WriteLine("Count of elements (updated) = "+dict.Count); Console.WriteLine("Key/value pairs..."); foreach(KeyValuePair<string, string> res in dict){ Console.WriteLine("Key = {0}, Value = {1}", res.Key, res.Value); } } }
आउटपुट
यह निम्नलिखित आउटपुट उत्पन्न करेगा -
Count of elements = 5 Count of elements (updated) = 7 Key/value pairs... Key = One, Value = John Key = Two, Value = Tom Key = Three, Value = Jacob Key = Four, Value = Kevin Key = Five, Value = Nathan Key = Six, Value = Anne Key = Seven, Value = Katie