在 C# 中,`Dictionary.ContainsKey()` 是用于检查字典中是否包含特定键的方法。它返回一个布尔值,表示字典中是否
存在指定的键。
以下是 `Dictionary.ContainsKey()` 的用法示例:
```csharp
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
Dictionary
dictionary.Add("apple", 1);
dictionary.Add("banana", 2);
dictionary.Add("cherry", 3);
Console.WriteLine(dictionary.ContainsKey("apple")); // true
Console.WriteLine(dictionary.ContainsKey("grape")); // false
}
}
```
在上面的示例中,我们创建了一个名为 `dictionary` 的字典,并向其添加了几个键值对。然后,使用 `ContainsKey()` 方法
来检查字典是否包含指定的键。输出结果显示了每次检查的结果。