「C#」CountプロパティでDictionaryの要素数を取得する

2021年10月8日

関数
public int Count { get; }
Dictionary<TKey,TValue> に格納されているキー/値ペアの数を取得します。
使用例

using System;
using System.Collections.Generic;
class Arkgame
{
    public static void Main()
    {
        //Dictionaryクラスをインスタンス
        var citys = new Dictionary<int, string>();
        citys.Add(101, "東京");
        citys.Add(202, "大阪");
        citys.Add(303, "福岡");

        //Countプロパティ
        Console.WriteLine("Dictionaryの要素数: " + citys.Count); 
        Console.ReadKey();
    }
}

実行結果
Dictionaryの要素数: 3

C#

Posted by arkgame