如何遍历字典的哈希集

时间:2019-04-26 19:26:16

标签: c#

提前道歉;我正在尝试学习C#的第三天。

我被指示建立字典的哈希集;没问题。我看到那已经建立。我现在需要遍历哈希集,如果字典的键!=特定字符串,则将条目复制到新列表中。有人可以解释一下完成此看似简单任务的正确语法吗?

var goodSongs = new List<Dictionary<string,string>>();

var allSongs = new HashSet<Dictionary<string, string>>();

Dictionary<string, string> meatloaf = new Dictionary<string, string>();
meatloaf.Add("Meatloaf", "Paradise By The Dashboard Light");

Dictionary<string, string> aerosmith = new Dictionary<string,string>();
aerosmith.Add("Aerosmith", "Cryin'");

Dictionary<string, string> nickelback = new Dictionary<string, string>();
nickelback.Add("Nickelback", "Rockstar");

allSongs.Add(nickelback);
allSongs.Add(aerosmith);
allSongs.Add(meatloaf);

//foreach loop to iterate dictionaries goes here

目标-要摆脱困境,希望学习C#,并确定我是否要继续努力下去。谢谢大家。

1 个答案:

答案 0 :(得分:5)

这是一个如何遍历哈希集和字典的示例:

-o CheckHostIP=no