La clase de lista representa la lista de objetos a los que se puede acceder por índice. Viene bajo el espacio de nombres System.Collection.Generic . La clase de lista se puede usar para crear una colección de diferentes tipos, como números enteros, strings, etc. La clase de lista también proporciona los métodos para buscar, ordenar y manipular listas. La propiedad List.Count se utiliza para obtener el número total de elementos contenidos en la Lista.
Propiedades:
- Es diferente de las arrays. Una lista se puede cambiar de tamaño dinámicamente , pero las arrays no.
- La clase de lista puede aceptar nulo como un valor válido para los tipos de referencia y también permite elementos duplicados .
- Si el recuento se vuelve igual a la capacidad, la capacidad de la lista aumenta automáticamente al reasignar la array interna. Los elementos existentes se copiarán en la nueva array antes de agregar el nuevo elemento.
Sintaxis:
list_name.Count
Los siguientes programas ilustran el uso de la propiedad Count:
Ejemplo 1:
// C# code to get the number of // elements contained in List using System; using System.Collections.Generic; class Geeks { // Main Method public static void Main() { // Creating a List of integers List<int> firstlist = new List<int>(); // adding elements in firstlist for (int i = 4; i < 10; i++) { firstlist.Add(i * 2); } // To get the number of // elements in the List Console.WriteLine(firstlist.Count); } }
Producción:
6
Ejemplo 2:
// C# code to get the number of // elements contained in List using System; using System.Collections.Generic; class Geeks { // Main Method public static void Main() { // Creating a List of integers List<int> firstlist = new List<int>(); // To get the number of // elements in the List Console.WriteLine(firstlist.Count); } }
Producción:
0
Referencia:
Publicación traducida automáticamente
Artículo escrito por Kirti_Mangal y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA