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를 반환합니다.

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static long LongCount(System::Collections::Generic::IEnumerable<TSource> ^ source);
public static long LongCount<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
static member LongCount : seq<'Source> -> int64
<Extension()>
Public Function LongCount(Of TSource) (source As IEnumerable(Of TSource)) As Long

형식 매개 변수

TSource

source 요소의 형식입니다.

매개 변수

source
IEnumerable<TSource>

개수를 셀 요소가 들어 있는 IEnumerable<T>입니다.

반환

소스 시퀀스의 요소 수입니다.

예외

source이(가) null인 경우

요소 수가 Int64.MaxValue를 초과합니다.

예제

다음 코드 예제에서는 를 사용하여 LongCount<TSource>(IEnumerable<TSource>) 배열의 요소를 계산하는 방법을 보여 줍니다.

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.
*/
' Create an array of strings.
Dim fruits() As String =
{"apple", "banana", "mango", "orange", "passionfruit", "grape"}

' Get the number of items in the array.
Dim count As Long = fruits.LongCount()

' Display the result.
Console.WriteLine($"There are {count} fruits in the collection.")

' This code produces the following output:
'
' There are 6 fruits in the collection.

설명

결과가 보다 MaxValue클 것으로 예상되는 경우 대신 Count 이 메서드를 사용합니다.

Visual Basic 쿼리 식 구문에서 절은 Aggregate Into LongCount() 호출로 LongCount변환됩니다.

추가 정보

적용 대상

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

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

시퀀스에서 특정 조건에 맞는 요소 수를 나타내는 Int64를 반환합니다.

public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
 static long LongCount(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, bool> ^ predicate);
public static long LongCount<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);
static member LongCount : seq<'Source> * Func<'Source, bool> -> int64
<Extension()>
Public Function LongCount(Of TSource) (source As IEnumerable(Of TSource), predicate As Func(Of TSource, Boolean)) As Long

형식 매개 변수

TSource

source 요소의 형식입니다.

매개 변수

source
IEnumerable<TSource>

개수를 셀 요소가 들어 있는 IEnumerable<T>입니다.

predicate
Func<TSource,Boolean>

각 요소를 조건에 대해 테스트하는 함수입니다.

반환

시퀀스에서 조건자 함수의 조건에 맞는 요소 수를 나타내는 숫자입니다.

예외

source 또는 predicatenull인 경우

일치하는 요소 수가 Int64.MaxValue를 초과합니다.

예제

다음 코드 예제에서는 를 사용하여 LongCount<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) 조건을 충족하는 배열의 요소를 계산하는 방법을 보여 줍니다.

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.
*/
Structure Pet
    Public Name As String
    Public Age As Integer
End Structure

Sub LongCountEx2()
    ' Create a list of Pet objects.
    Dim pets As New List(Of Pet)(New Pet() _
                 {New Pet With {.Name = "Barley", .Age = 8},
                  New Pet With {.Name = "Boots", .Age = 4},
                  New Pet With {.Name = "Whiskers", .Age = 1}})

    ' Determine the number of elements in the list
    ' where the pet's age is greater than a constant value (3).
    Const Age As Integer = 3
    Dim count As Long =
pets.LongCount(Function(pet) pet.Age > Age)

    ' Display the result.
    Console.WriteLine($"There are {count} animals over age {Age}")
End Sub

' This code produces the following output:
'
' There are 2 animals over age 3

설명

결과가 보다 MaxValue클 것으로 예상되는 경우 대신 Count 이 메서드를 사용합니다.

Visual Basic 쿼리 식 구문에서 절은 Aggregate Into LongCount() 호출로 LongCount변환됩니다.

추가 정보

적용 대상