C# List(リスト)内にある値の個数を取得する

  • 作成日 2020.11.10
  • 更新日 2022.03.04
  • C#
C# List(リスト)内にある値の個数を取得する

C#で、Countを使用して、List(リスト)内にある値の個数を取得するサンプルコードを記述してます。

環境

  • OS windows10 pro 64bit
  • Microsoft Visual Studio Community 2019 Version 16.7.1

個数を取得

Countを使用すると、List(リスト)内になる値の数を取得することが可能です

using System;
using System.Collections.Generic;

namespace testapp
{
    class Program
    {


        static void Main(string[] args)
        {

            var list = new List<int> { 1, 2, 3, 4, 5 };
            

            // Listの個数
            Console.WriteLine(list.Count); // 5
            

        }

    }
}

配列の場合は、「Length」を使用します。

using System;
using System.Collections.Generic;

namespace testapp
{
    class Program
    {


        static void Main(string[] args)
        {   

            int[] arr = { 1 ,2 ,3 };

            // 配列の数
            Console.WriteLine(arr.Length); // 3

        }

    }
}