什么是 C# 中 Hashtable 类的 IsFixedSize 属性?


使用 Hashtable 类的 isFixedSize 属性以获取一个值,该值指示 Hashtable 是否具有固定的大小。

下面是一个示例,展示如何使用 IsFixedSize 属性。

示例

 在线示例

using System;
using System.Collections;
namespace Demo {
   class Program {
      static void Main(string[] args) {
         Hashtable ht = new Hashtable();
         ht.Add("D01", "Finance");
         ht.Add("D02", "HR");
         ht.Add("D03", "Operations");
         Console.WriteLine("IsFixedSize = " + ht.IsFixedSize);
         Console.ReadKey();
      }
   }
}

输出

IsFixedSize = False

我们在上方添加了 Hashtable 集合。

Hashtable ht = new Hashtable();

然后在添加元素后,我们使用 isFixedSize 属性检查它是否具有固定的大小。

ht.IsFixedSize

更新日期: 23-6-2020

75 次浏览

开启你的 职业 生涯

完成课程获得认证

开始
广告