C# |获取一个包含列表字典

中关键字的集合

原文:https://www . geesforgeks . org/c-sharp-get-an-I collection-包含列表中的键的字典/

列表词典。Keys 属性用于获取一个包含列表字典中的键的 ICollection。

语法:

public System.Collections.ICollection Keys { get; }

返回值:返回一个包含列表字典中关键字的集合

以下是说明列表词典使用的程序。按键属性:

例 1:

// C# code to get an ICollection
// containing the keys in the ListDictionary
using System;
using System.Collections;
using System.Collections.Specialized;

class GFG {

    // Driver code
    public static void Main()
    {

        // Creating a ListDictionary named myDict
        ListDictionary myDict = new ListDictionary();

        myDict.Add("Australia", "Canberra");
        myDict.Add("Belgium", "Brussels");
        myDict.Add("Netherlands", "Amsterdam");
        myDict.Add("China", "Beijing");
        myDict.Add("Russia", "Moscow");
        myDict.Add("India", "New Delhi");

        // Get an ICollection containing
        // the keys in the ListDictionary
        ICollection ic = myDict.Keys;

        // Displaying the keys in ICollection ic
        foreach(String str in ic)
        {
            Console.WriteLine(str);
        }
    }
}

Output:

Australia
Belgium
Netherlands
China
Russia
India

例 2:

// C# code to get an ICollection
// containing the keys in the ListDictionary
using System;
using System.Collections;
using System.Collections.Specialized;

class GFG {

    // Driver code
    public static void Main()
    {

        // Creating a ListDictionary named myDict
        ListDictionary myDict = new ListDictionary();

        myDict.Add("I", "first");
        myDict.Add("II", "second");
        myDict.Add("III", "third");
        myDict.Add("IV", "fourth");
        myDict.Add("V", "fifth");

        // Get an ICollection containing
        // the keys in the ListDictionary
        ICollection ic = myDict.Keys;

        // Displaying the keys in ICollection ic
        foreach(String str in ic)
        {
            Console.WriteLine(str);
        }
    }
}

Output:

I
II
III
IV
V

注:

  • icocollection 中值的顺序未指定,但它与 values 方法返回的 icocollection 中关联值的顺序相同。
  • 返回的 ICollection 不是静态副本。取而代之的是,ICollection 引用回原始列表字典中的键。因此,对列表词典的更改将继续反映在 ICollection 中。
  • 检索该属性的值是一个 O(1)操作。

参考: