什么是 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

更新于: 2020 年 6 月 20 日

91 次浏览

启动您的 事业

通过完成课程获得认证

开始
广告