-
C# |检查 OrderedDictionary 集合是否为只读
C# |检查 OrderedDictionary 集合是否为只读
原文:https://www . geesforgeks . org/c-sharp-check-if-ordered dictionary-collection-is-read-only/
OrderedDictionary。IsReadOnly 属性用于获取一个值,该值指示 OrderedDictionary 集合是否为只读。
语法:
public bool IsReadOnly { get; }
返回值:如果 OrderedDictionary 集合为只读,则该属性返回 True ,否则返回 False 。默认为 假 。
下面给出了一些例子,以便更好地理解实现:
例 1:
// C# code to check if OrderedDictionary
// collection is read-only
using System;
using System.Collections;
using System.Collections.Specialized;
class GFG {
// Driver method
public static void Main()
{
// Creating a orderedDictionary named myDict
OrderedDictionary myDict = new OrderedDictionary();
// Adding key and value in myDict
myDict.Add("key1", "value1");
myDict.Add("key2", "value2");
myDict.Add("key3", "value3");
myDict.Add("key4", "value4");
myDict.Add("key5", "value5");
// Checking if OrderedDictionary
// collection is read-only
Console.WriteLine(myDict.IsReadOnly);
}
}
输出:
False
例 2:
// C# code to check if OrderedDictionary
// collection is read-only
using System;
using System.Collections;
using System.Collections.Specialized;
class GFG {
// Driver method
public static void Main()
{
// Creating a orderedDictionary named myDict
OrderedDictionary myDict = new OrderedDictionary();
// Adding key and value in myDict
myDict.Add("A", "Apple");
myDict.Add("B", "Banana");
myDict.Add("C", "Cat");
myDict.Add("D", "Dog");
// Checking if OrderedDictionary
// collection is read-only
// if not, insert a new key in beginning
// of myDict
if (!myDict.IsReadOnly)
myDict.Insert(0, "E", "Elephant");
// Displaying the elements in myDict
foreach(DictionaryEntry de in myDict)
Console.WriteLine(de.Key + " -- " + de.Value);
}
}
输出:
E -- Elephant
A -- Apple
B -- Banana
C -- Cat
D -- Dog
注:
- 只读集合在创建后不允许添加、移除或修改元素。
- 只读集合只是一个带有包装器的集合,包装器可以防止对集合的修改。因此,如果对基础集合进行了更改,只读集合将反映这些更改。
参考:
- https://docs . Microsoft . com/en-us/dotnet/API/system . collections . specialized . ordereddictionary . is readonly?视图=netframework-4.7.2
版权属于:月萌API www.moonapi.com,转载请注明出处
本文链接:https://www.moonapi.com/news/27933.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开发跨平台小程序开发的诸多坑【转
前端设计模式——桥接模式