In my foreach loop I would like to stop after 50 items, how would you break out of this foreach loop when I reach the 50th item?
Thanks
foreach (ListViewItem lvi in listView.Items)
|
|
|||||||||
|
|
|
or use LINQ
or just use a regular for loop (as suggested by @sgriffinusa and @Eric J.)
|
||||||||||||||
|
|
|
|
||
|
|
|
|
This should work.
|
||
|
|
|
|
Or just use a regular for loop instead of foreach. A for loop is slightly faster (though you won't notice the difference except in very time critical code). |
||
|
|
|
|
Why not just use a regular for loop?
Updated to resolve bug pointed out by Ruben and Pragmatrix. |
||||
|