Comment parcourir en boucle une collection qui prend en charge IEnumerable ?
Réponses
Trop de publicités?
Alexa Adrian
Points
434
ou même une méthode old fashion très classique
using System.Collections.Generic;
using System.Linq;
...
IEnumerable<string> collection = new List<string>() { "a", "b", "c" };
for(int i = 0; i < collection.Count(); i++)
{
string str1 = collection.ElementAt(i);
// do your stuff
}
peut-être que vous aimeriez aussi cette méthode :-)
Darin Dimitrov
Points
528142
Carl Bergquist
Points
1906