How do I limit the loop below to 50 so it stops when it reaches the 51st item?
foreach (ListViewItem lvi in listView.Items)
{
}
Thanks
|
|
|
|
|
|
|
OR since it is a list view item
Using Linq as Per LukeDuff
Using For Loop as Per Atomiton
|
||||||||||
|
|
|
Using LINQ, this could be implemented as:
Take(n) returns the first n elements or all element if less than n are available. |
||
|
|
|
A for loop will work, but you can still setup a ListViewItem named lvi like so.
|
|||
|
|
Easy with Linq
From the MSDN documentation:
|
||||||
|
|
|
People have given plenty of examples, and in this specific case since ListView.Items is an indexed collection, an old fashioned for loop is probably best. If it were something like an IEnumerable where you couldn't use Items[i] then you'd have to do like the other examples with an external counter variable. |
||
|
|
|
|
|
||||||
|
|
|
|
||||||||||
|
|
|
|
||
|
|
|
|
I would use a for loop as charles suggested instead of a foreach with an index check. The intent is more obvious as a for loop is used when you need to keep track of the current iteration.
|
||||||
|
|
|
If you want to still use a foreach loop try the following:
|
||
|
|
|
|
Well, the foreach may not be the best solution, but if you must:
Note: a for loop is generally lighter than using a foreach to go through a collection. Better to use a for loop:
|
||||||||||
|
|
|
Use a for loop.
|
||||||||
|