object list count C# code example

Example 1: c# list length

//the using that need with list
using System;
using System.Collections.Generic;

//create List
List<int> list = new List<int>() {7,5,1,4 };
//set the length of the list to variable
int listLenght = list.Count;
//print length of the list
Console.WriteLine(listLenght);

Example 2: get count of specific objects in list c#

var myList = new List<int>()
{
  0, 1, 2, 1, 5, 4, 8, 5, 2, 7, 1, 9
};

int count = 0;
foreach (var number in list)
{
  if (number == 2)
    count++;
}

Console.WriteLine("Number of 2s in list is: " + count);
// Output:
// Number of 2s in list is: 2