C#中的包含键
ContainsKey是C#中的Dictionary方法,用于检查字典中是否存在键。
声明字典并添加元素-
var dict = new Dictionary() { {"TV", 1}, {"Home Theatre", 2}, {"Amazon Alexa", 3}, {"Google Home", 5}, {"Laptop", 5}, {"Bluetooth Speaker", 6} };
现在,假设您需要检查字典中是否存在特定元素。为此,使用ContainsKey()方法-
if (dict.ContainsKey("Laptop") == true) {
Console.WriteLine(dict["Laptop"]);
}以下是代码-
示例
using System;
using System.Collections.Generic;
public class Demo {
public static void Main() {
var dict = new Dictionary() {
{"TV", 1},
{"Home Theatre", 2},
{"Amazon Alexa", 3},
{"Google Home", 5},
{"Laptop", 5},
{"Bluetooth Speaker", 6}
};
if (dict.ContainsKey("Laptop") == true) {
Console.WriteLine(dict["Laptop"]);
}
if (dict.ContainsKey("Amazon Alexa") == true) {
Console.WriteLine(dict["Amazon Alexa"]);
}
}
} 输出结果5 3
热门推荐
10 道教生日祝福语简短大全
11 姥爷生日祝福语简短精辟
12 表妹结婚祝福语简短藏语
13 老考试顺利祝福语简短
14 办结婚喜酒祝福语简短
15 新年送老师简短祝福语
16 恭喜订婚的祝福语简短
17 项目建设春节祝福语简短
18 毕业结婚祝福语简短精辟