📜  C#| SortedDictionary.Count属性(1)

📅  最后修改于: 2023-12-03 14:40:29.531000             🧑  作者: Mango

C# | SortedDictionary.Count属性

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时,经常需要获取元素数量,因此该属性十分实用。