📅  最后修改于: 2023-12-03 14:40:29.531000             🧑  作者: Mango
SortedDictionary.Count
属性是C#中SortedDictionary<TKey, TValue>
泛型集合类的只读属性之一。该属性返回集合中键值对的数量。
public int Count { get; }
Count
属性返回一个整数值,表示集合中键值对的数量。
下面是一个使用SortedDictionary.Count
属性的示例。
using System;
using System.Collections.Generic;
class Program
{
static void Main()
{
// 创建一个SortedDictionary
SortedDictionary<string, int> dict = new SortedDictionary<string, int>();
// 添加一些元素
dict.Add("One", 1);
dict.Add("Two", 2);
dict.Add("Three", 3);
// 使用Count属性获取元素数量
int count = dict.Count;
Console.WriteLine($"集合中元素数量为:{count}");
}
}
输出:
集合中元素数量为:3
SortedDictionary.Count
属性是只读的,无法修改集合大小。
SortedDictionary.Count
属性是一个很有用的属性,通过该属性可以获取SortedDictionary<TKey, TValue>
泛型集合中键值对的数量。在使用SortedDictionary
时,经常需要获取元素数量,因此该属性十分实用。