LINQ中的COUNT()函数用于计算列表或集合中的元素数。
以下是定义LINQ Count函数以对列表中的项目数进行计数的语法。
C#中LINQ Count()函数的语法
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ConsoleApp1{class Program{static void Main(string[] args){//create an array Num of type intint[] Num = { 1, 2, 3, 4, 5, 6, 7, 8, 9 };
Console.WriteLine("Find the count of the elements:");
/*to find the number of values in Num array will apply the 'count' function on the array Num*/int Count = Num.Count();
/*print the value of 'Count' variable which is type of int with the helplp of WriteLine function*/Console.WriteLine("The Count is {0}", Count);
Console.ReadLine();
}}}
在这里, 我们使用Count()函数找出给定集合” Num” 的计数。
【LINQ Count()函数】当我们执行上面的LINQ Count()示例时, 我们将得到如下所示的结果:
文章图片
推荐阅读
- LINQ Aggregate()函数
- LINQ sum()函数
- LINQ Max()函数
- LINQ Min()函数
- LINQ语法详解
- LINQ Lambda表达式语法
- LINQ基本原理简介
- LINQ教程介绍
- halcon|halcon 制作标定板