📜  C#|检查SortedDictionary是否包含指定的键

📅  最后修改于: 2021-05-29 15:07:58             🧑  作者: Mango

SortedDictionary .ContainsKey(TKey)方法用于检查SortedDictionary是否包含具有指定键的元素。

句法:

public bool ContainsKey (TKey key);

在此,是要位于SortedDictionary中的键。

返回值:如果Dictionary包含具有指定键的元素,则此方法将返回true ,否则返回false

异常:如果为null,则此方法将提供ArgumentNullException。

下面是说明上述方法的用法的程序:

范例1:

// C# code to check if a key is
// present or not in a SortedDictionary.
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Create a new dictionary of
        // strings, with string keys.
        SortedDictionary myDict = 
          new SortedDictionary();
  
        // Adding key/value pairs in myDict
        myDict.Add(1, "C");
        myDict.Add(2, "C++");
        myDict.Add(3, "Java");
        myDict.Add(4, "Python");
        myDict.Add(5, "C#");
        myDict.Add(6, "HTML");
  
        // Checking for Key 4
        if (myDict.ContainsKey(4))
            Console.WriteLine("Key : 4 is present");
  
        else
            Console.WriteLine("Key : 4 is absent");
    }
}
输出:
Key : 4 is present

范例2:

// C# code to check if a key is
// present or not in a SortedDictionary.
using System;
using System.Collections.Generic;
  
class GFG {
  
    // Driver code
    public static void Main()
    {
  
        // Create a new dictionary of
        // strings, with string keys.
        SortedDictionary myDict =
          new SortedDictionary();
  
        // Adding key/value pairs in myDict
        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");
  
        // Checking for Key "USA"
        if (myDict.ContainsKey("USA"))
            Console.WriteLine("Key : USA is present");
  
        else
            Console.WriteLine("Key : USA is absent");
    }
}
输出:
Key : USA is absent

参考:

  • https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.generic.sorteddictionary-2.containskey?view=netframework-4.7.2