当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


LINQ Count()用法及代码示例


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 Count() function



相关用法


注:本文由纯净天空筛选整理自 LINQ Count() function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。