c# count specific element in list
// lstSlots = new List<int> { 1, 1, 0 }
lstSlots.Count(n => n == 1) // returns 2
c# count specific element in list
// lstSlots = new List<int> { 1, 1, 0 }
lstSlots.Count(n => n == 1) // returns 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
Copyright © 2021 Codeinu
Forgot your account's password or having trouble logging into your Account? Don't worry, we'll help you to get back your account. Enter your email address and we'll send you a recovery link to reset your password. If you are experiencing problems resetting your password contact us