-
C# |检查 SortedDictionary 是否包含指定的键
C# |检查 SortedDictionary 是否包含指定的键
原文:https://www . geesforgeks . org/c-sharp-check-if-sorted dictionary-contains-the-specified-key-or-not/
排序字典< TKey,TValue >。ContainsKey(TKey)方法 用于检查 SortedDictionary 是否包含具有指定键的元素。
语法:
public bool ContainsKey (TKey key);
这里键是位于排序字典中的键。
返回值:如果字典中包含具有指定键的元素,该方法将返回 true ,否则返回 false 。
异常:如果键为空,该方法将给出参数异常。
以下是说明上述方法使用的程序:
例 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<int, string> myDict =
new SortedDictionary<int, string>();
// 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");
}
}
Output:
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<string, string> myDict =
new SortedDictionary<string, string>();
// 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");
}
}
Output:
Key : USA is absent
参考:
- https://docs . Microsoft . com/en-us/dotnet/API/system . collections . generic . sorted dictionary-2 . contains key?视图=netframework-4.7.2
版权属于:月萌API www.moonapi.com,转载请注明出处
本文链接:https://www.moonapi.com/news/27935.html
栏目列表
最新更新
博克-定制图例
博克-注释和图例
Bokeh–添加小部件
向博克图添加标签
将交互式滑块添加到博克图
在 Bokeh 中添加按钮
谷歌、微软、Meta?谁才是 Python 最大的金
Objective-C语法之代码块(block)的使用
URL Encode
go语言写http踩得坑
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
SQL Server -- 解决存储过程传入参数作为s
[SQL Server]按照设定的周别的第一天算任意
Linux下定时自动备份Docker中所有SqlServer数
六、Danfo.js 数据可视化
五、plotly.js 数据可视化
四、数据分析、清理、转化
三、Danfo.js 入门
第二部分:使用 Danfo.js 和 Dnotebook 的据分
一、现代 JavaScript 概述
javascript 第一部分:基础知识
零、前言
uni-app开发跨平台小程序开发的诸多坑【转
前端设计模式——桥接模式