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 int
int[] 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 Cast()用法及代码示例
- LINQ AsEnumrable()用法及代码示例
- LINQ ToLookup()用法及代码示例
- LINQ ElementAtOrDefault()用法及代码示例
- LINQ Single()用法及代码示例
- LINQ sum()用法及代码示例
- LINQ ToArray()用法及代码示例
- LINQ Min()用法及代码示例
- LINQ ToDictionary()用法及代码示例
- LINQ LastOrDefault()用法及代码示例
- LINQ FirstOrDefault()用法及代码示例
- LINQ GroupBy()用法及代码示例
- LINQ ToList()用法及代码示例
- LINQ Max()用法及代码示例
- LINQ Aggregate()用法及代码示例
- LINQ DefaultfEmpty()用法及代码示例
- LINQ Last()用法及代码示例
- LINQ ElementAt()用法及代码示例
- LINQ OfType()用法及代码示例
- Lodash _.sampleSize()用法及代码示例
注:本文由纯净天空筛选整理自 LINQ Count() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。