📜  .net 循环遍历字典 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:45.933000             🧑  作者: Mango

代码示例3
foreach (KeyValuePair item in myDictionary)
{
    MessageBox.Show(item.Key + "   " + item.Value);
}