使用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