Hashtable类表示键和值对的集合,这些键和值对是根据键的哈希码进行组织的。该键用于访问集合中的项目。 Hashtable.Count属性用于获取Hashtable中包含的键/值对的总数。
句法:
myTable.Count
在这里, myTable是哈希表的名称。
下面给出了一些示例,以更好地理解实现:
范例1:
// C# code to get the number of key-and-value
// pairs contained in the Hashtable.
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating a Hashtable
Hashtable myTable = new Hashtable();
// Adding elements in Hashtable
myTable.Add("2", "Even & Prime");
myTable.Add("3", "Odd & Prime");
myTable.Add("4", "Even & non-prime");
myTable.Add("9", "Odd & non-prime");
// To get the number of key-and-value
// pairs contained in the Hashtable.
Console.WriteLine(myTable.Count);
}
}
输出:
4
范例2:
// C# code to get the number of key-and-value
// pairs contained in the Hashtable.
using System;
using System.Collections;
class GFG {
// Driver code
public static void Main()
{
// Creating an empty Hashtable
Hashtable myTable = new Hashtable();
// To get the number of key-and-value
// pairs contained in the Hashtable.
Console.WriteLine(myTable.Count);
}
}
输出:
0
参考:
- https://docs.microsoft.com/zh-cn/dotnet/api/system.collections.hashtable.count?view=netframework-4.7.2