结合两个键的字典的C#程序
首先,设置要组合的字典-
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组合它们。用于相同目的的方法是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
热门推荐
3 修祖屋祝福语简短
10 高考送考祝福语简短
11 出阁祝福语简短句子
12 年前幸福祝福语大全简短
13 祝福语诗意文案简短
14 成长仪式的简短祝福语
15 下雨开工吉祥祝福语简短
16 送给老师中秋祝福语简短
17 宝宝周岁可乐祝福语简短
18 三八简短祝福语给婆婆