Este team de redactores ha estado por horas investigando la resolución a tu duda, te regalamos la soluciones por eso nuestro deseo es resultarte de gran ayuda.
Ejemplo: c# recorrer la lista
usingSystem;usingSystem.Collections.Generic;namespaceforgetCodeclassprogrampublicstaticvoidMain()List<int> list =newList<int>();
list.Add(1);
list.Add(2);
list.Add(3);foreach(int item in list)// Loop through List with foreach
Console.WriteLine(item);for(int i =0; i < list.Count; i++)// Loop through List with for
Console.WriteLine(list[i]);/*
Outputs:
1
2
3
1
2
3
*/
Si te gustó nuestro trabajo, tienes el poder dejar un post acerca de qué le añadirías a esta noticia.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)