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
广告