सबसे पहले, शब्दकोशों को संयोजित करने के लिए सेट करें -
Dictionary <string, int> dict1 = new Dictionary <string, int> ();
dict1.Add("one", 1);
dict1.Add("Two", 2);
Dictionary <string, int> dict2 = new Dictionary <string, int> ();
dict2.Add("Three", 3);
dict2.Add("Four", 4); अब, उन्हें संयोजित करने के लिए हैशसेट का उपयोग करें। इसी उद्देश्य के लिए उपयोग की जाने वाली विधि UnionWith() −
. हैHashSet <string> hSet = new HashSet <string> (dict1.Keys); hSet.UnionWith(dict2.Keys);
निम्नलिखित पूरा कोड है -
उदाहरण
using System;
using System.Collections.Generic;
public class Program {
public static void Main() {
Dictionary <string, int> dict1 = new Dictionary <string, int> ();
dict1.Add("one", 1);
dict1.Add("Two", 2);
Dictionary <string, int> dict2 = new Dictionary <string, int> ();
dict2.Add("Three", 3);
dict2.Add("Four", 4);
HashSet <string> hSet = new HashSet <string> (dict1.Keys);
hSet.UnionWith(dict2.Keys);
Console.WriteLine("Union of Dictionary...");
foreach(string val in hSet) {
Console.WriteLine(val);
}
}
} आउटपुट
Union of Dictionary... one Two Three Four