什么是 C# 中 Hashtable 类的 Count 属性?
要找出 Hashtable 类的元素数量,请使用 Count 属性。首先,使用元素设置 Hashtable 类 −
Hashtable ht = new Hashtable(); ht.Add("One", "Tom"); ht.Add("Two", "Jack"); ht.Add("Three", "Peter"); ht.Add("Four", "Russel"); ht.Add("Five", "Brad"); ht.Add("Six", "Bradley"); ht.Add("Seven", "Steve"); ht.Add("Eight", "David");
现在,使用 Count 属性计算元素数量 −
ht.Count
以下是完整示例,用于了解 C# 中 Hashtable Count 属性的使用。
示例
using System; using System.Collections; namespace Demo { class Program { static void Main(string[] args) { Hashtable ht = new Hashtable(); ht.Add("One", "Tom"); ht.Add("Two", "Jack"); ht.Add("Three", "Peter"); ht.Add("Four", "Russel"); ht.Add("Five", "Brad"); ht.Add("Six", "Bradley"); ht.Add("Seven", "Steve"); ht.Add("Eight", "David"); Console.WriteLine("Count = " + ht.Count); Console.ReadKey(); } } }
输出
Count = 8
广告