📜  C#字典

📅  最后修改于: 2020-10-31 10:25:10             🧑  作者: Mango

C#字典

C#字典类使用哈希表的概念。它根据键存储值。它仅包含唯一键。借助键,我们可以轻松地搜索或删除元素。在System.Collections.Generic命名空间中找到它。

C#字典

让我们看一个通用字典的例子使用Add()方法存储元素并使用for-each循环迭代元素的类。在这里,我们使用KeyValuePair类获取键和值。

using System;
using System.Collections.Generic;

public class DictionaryExample
{
    public static void Main(string[] args)
    {
        Dictionary names = new Dictionary();
        names.Add("1","Sonoo");
        names.Add("2","Peter");
        names.Add("3","James");
        names.Add("4","Ratan");
        names.Add("5","Irfan");

        foreach (KeyValuePair kv in names)
        {
            Console.WriteLine(kv.Key+" "+kv.Value);
        }
    }
}

输出:

1 Sonoo
2 Peter
3 James
4 Ratan
5 Irfan