Enumerable.LongCount 方法

定义

返回表示序列中的元素数量的 Int64

重载

LongCount<TSource>(IEnumerable<TSource>)

返回表示序列中元素总数的 Int64

LongCount<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)

返回表示序列中满足条件的元素的数量的 Int64

LongCount<TSource>(IEnumerable<TSource>)

Source:
Count.cs
Source:
Count.cs
Source:
Count.cs

返回表示序列中元素总数的 Int64

C#
public static long LongCount<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);

类型参数

TSource

source 的元素类型。

参数

source
IEnumerable<TSource>

包含要进行计数的元素的 IEnumerable<T>

返回

源序列中的元素数量。

例外

sourcenull

元素数超过 Int64.MaxValue

示例

下面的代码示例演示如何使用 LongCount<TSource>(IEnumerable<TSource>) 对数组中的元素进行计数。

C#
string[] fruits = { "apple", "banana", "mango",
                      "orange", "passionfruit", "grape" };

long count = fruits.LongCount();

Console.WriteLine("There are {0} fruits in the collection.", count);

/*
 This code produces the following output:

 There are 6 fruits in the collection.
*/

注解

使用此方法,而不是 Count 在预期结果大于 MaxValue时使用 。

在 Visual Basic 查询表达式语法中, Aggregate Into LongCount() 子句转换为 的调用 LongCount

另请参阅

适用于

.NET 9 和其他版本
产品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0

LongCount<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)

Source:
Count.cs
Source:
Count.cs
Source:
Count.cs

返回表示序列中满足条件的元素的数量的 Int64

C#
public static long LongCount<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);

类型参数

TSource

source 的元素类型。

参数

source
IEnumerable<TSource>

包含要进行计数的元素的 IEnumerable<T>

predicate
Func<TSource,Boolean>

用于测试每个元素是否满足条件的函数。

返回

一个数字,表示序列中满足谓词函数条件的元素数量。

例外

sourcepredicatenull

匹配的元素数超过 Int64.MaxValue

示例

下面的代码示例演示如何使用 LongCount<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 对满足条件的数组中的元素进行计数。

C#
class Pet
{
    public string Name { get; set; }
    public int Age { get; set; }
}

public static void LongCountEx2()
{
    Pet[] pets = { new Pet { Name="Barley", Age=8 },
                   new Pet { Name="Boots", Age=4 },
                   new Pet { Name="Whiskers", Age=1 } };

    const int Age = 3;

    long count = pets.LongCount(pet => pet.Age > Age);

    Console.WriteLine("There are {0} animals over age {1}.", count, Age);
}

/*
 This code produces the following output:

 There are 2 animals over age 3.
*/

注解

使用此方法,而不是 Count 在预期结果大于 MaxValue时使用 。

在 Visual Basic 查询表达式语法中, Aggregate Into LongCount() 子句转换为 的调用 LongCount

另请参阅

适用于

.NET 9 和其他版本
产品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.0, 1.1, 1.2, 1.3, 1.4, 1.6, 2.0, 2.1
UWP 10.0