ListDictionary.IsFixedSize属性用于获取一个值,该值指示ListDictionary是否具有固定大小。
句法:
public bool IsFixedSize { get; }
返回值:该属性始终返回false 。
例子:
// C# code to check if ListDictionary
// has a fixed size
using System;
using System.Collections;
using System.Collections.Specialized;
class GFG {
// Driver code
public static void Main()
{
// Creating a ListDictionary named myDict
ListDictionary myDict = new ListDictionary();
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 if ListDictionary has a fixed size
Console.WriteLine(myDict.IsFixedSize);
}
}
输出:
False
笔记:
- 具有固定大小的集合不允许在创建集合后添加或删除元素,但是可以修改现有元素。
- 固定大小的集合就是带有包装器的集合,该包装器可防止添加和删除元素。因此,如果对基础集合进行了更改(包括添加或删除元素),则固定大小的集合将反映这些更改。
- 检索此属性的值是O(1)操作。
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.specialized.listdictionary.isfixedsize?view=netframework-4.7.2