Enumerable.Count Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Devuelve el número de elementos de una secuencia.
Sobrecargas
Count<TSource>(IEnumerable<TSource>) |
Devuelve el número de elementos de una secuencia. |
Count<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) |
Devuelve un número que representa cuántos elementos de la secuencia especificada satisfacen una condición. |
Count<TSource>(IEnumerable<TSource>)
- Source:
- Count.cs
- Source:
- Count.cs
- Source:
- Count.cs
Devuelve el número de elementos de una secuencia.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static int Count(System::Collections::Generic::IEnumerable<TSource> ^ source);
public static int Count<TSource> (this System.Collections.Generic.IEnumerable<TSource> source);
static member Count : seq<'Source> -> int
<Extension()>
Public Function Count(Of TSource) (source As IEnumerable(Of TSource)) As Integer
Parámetros de tipo
- TSource
Tipo de los elementos de source
.
Parámetros
- source
- IEnumerable<TSource>
Secuencia que contiene los elementos que se van a contar.
Devoluciones
El número de elementos de la secuencia de entrada.
Excepciones
source
es null
.
El número de elementos de source
es mayor que Int32.MaxValue.
Ejemplos
En el ejemplo de código siguiente se muestra cómo usar Count<TSource>(IEnumerable<TSource>) para contar los elementos de una matriz.
string[] fruits = { "apple", "banana", "mango", "orange", "passionfruit", "grape" };
try
{
int numberOfFruits = fruits.Count();
Console.WriteLine(
"There are {0} fruits in the collection.",
numberOfFruits);
}
catch (OverflowException)
{
Console.WriteLine("The count is too large to store as an Int32.");
Console.WriteLine("Try using the LongCount() method instead.");
}
// 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"}
Try
' Count the number of items in the array.
Dim numberOfFruits As Integer = fruits.Count()
' Display the output.
Console.WriteLine($"There are {numberOfFruits} fruits in the collection.")
Catch e As OverflowException
Console.WriteLine("The count is too large to store as an Int32. Try using LongCount() instead.")
End Try
' This code produces the following output:
'
' There are 6 fruits in the collection.
Comentarios
Si el tipo de source
implementa ICollection<T>, esa implementación se usa para obtener el recuento de elementos. De lo contrario, este método determina el recuento.
Use el LongCount método cuando espere y desee permitir que el resultado sea mayor que MaxValue.
En la sintaxis de la expresión de consulta de Visual Basic, una Aggregate Into Count()
cláusula se traduce en una invocación de Count.
Consulte también
Se aplica a
Count<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>)
- Source:
- Count.cs
- Source:
- Count.cs
- Source:
- Count.cs
Devuelve un número que representa cuántos elementos de la secuencia especificada satisfacen una condición.
public:
generic <typename TSource>
[System::Runtime::CompilerServices::Extension]
static int Count(System::Collections::Generic::IEnumerable<TSource> ^ source, Func<TSource, bool> ^ predicate);
public static int Count<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, Func<TSource,bool> predicate);
static member Count : seq<'Source> * Func<'Source, bool> -> int
<Extension()>
Public Function Count(Of TSource) (source As IEnumerable(Of TSource), predicate As Func(Of TSource, Boolean)) As Integer
Parámetros de tipo
- TSource
Tipo de los elementos de source
.
Parámetros
- source
- IEnumerable<TSource>
Secuencia que contiene los elementos que se van a probar y contar.
Devoluciones
Un número que representa cuántos elementos de la secuencia especificada satisfacen la condición de la función de predicado.
Excepciones
source
o predicate
es null
.
El número de elementos de source
es mayor que Int32.MaxValue.
Ejemplos
En el ejemplo de código siguiente se muestra cómo usar Count<TSource>(IEnumerable<TSource>, Func<TSource,Boolean>) para contar los elementos de una matriz que cumplen una condición.
class Pet
{
public string Name { get; set; }
public bool Vaccinated { get; set; }
}
public static void CountEx2()
{
Pet[] pets = { new Pet { Name="Barley", Vaccinated=true },
new Pet { Name="Boots", Vaccinated=false },
new Pet { Name="Whiskers", Vaccinated=false } };
try
{
int numberUnvaccinated = pets.Count(p => p.Vaccinated == false);
Console.WriteLine("There are {0} unvaccinated animals.", numberUnvaccinated);
}
catch (OverflowException)
{
Console.WriteLine("The count is too large to store as an Int32.");
Console.WriteLine("Try using the LongCount() method instead.");
}
}
// This code produces the following output:
//
// There are 2 unvaccinated animals.
Structure Pet
Public Name As String
Public Vaccinated As Boolean
End Structure
Public Shared Sub CountEx2()
' Create an array of Pet objects.
Dim pets() As Pet = {New Pet With {.Name = "Barley", .Vaccinated = True},
New Pet With {.Name = "Boots", .Vaccinated = False},
New Pet With {.Name = "Whiskers", .Vaccinated = False}}
Try
' Count the number of Pets in the array where the Vaccinated property is False.
Dim numberUnvaccinated As Integer =
pets.Count(Function(p) p.Vaccinated = False)
' Display the output.
Console.WriteLine($"There are {numberUnvaccinated} unvaccinated animals.")
Catch e As OverflowException
Console.WriteLine("The count is too large to store as an Int32. Try using LongCount() instead.")
End Try
End Sub
' This code produces the following output:
'
' There are 2 unvaccinated animals.
Comentarios
Si el tipo de source
implementa ICollection<T>, esa implementación se usa para obtener el recuento de elementos. De lo contrario, este método determina el recuento.
Debe usar el LongCount método cuando se espera y desea permitir que el resultado sea mayor que MaxValue.
En la sintaxis de la expresión de consulta de Visual Basic, una Aggregate Into Count()
cláusula se traduce en una invocación de Count.