What is the best way to iterate through a strongly-typed generic List in C#.NET and VB.NET?
|
|
|
|
|
|
|
For C#:
Answer for VB.NET from Purple Ant:
|
|||
|
|
|
|
It depends on your application:
|
||
|
|
|
|
C#
Anonymous delegates are not currently implemented in VB.Net, but both C# and VB.Net should be able to do lambdas: C#
VB.Net
As Grauenwolf pointed out the above VB won't compile since the lambda doesn't return a value. A normal ForEach loop as others have suggested is probably the easiest for now, but as usual it takes a block of code to do what C# can do in one line. |
||||
|
|
|
With any generic implementation of IEnumerable the best way is:
There is an important exception however. IEnumerable involves an overhead of Current() and MoveNext() that is what the foreach loop is actually compiled into. When you have a simple array of structs:
Is quicker. |
||
|
|
|
|
Without knowing the internal implementation of a list, I think generally the best way to iterate over it would be a foreach loop. Because foreach uses an IEnumerator to walk over the list, it's up to the list itself to determine how to move from object to object. If the internal implementation was, say, a linked list, then a simple for loop would be quite a bit slower than a foreach. Does that make sense? |
||
|
|
|
|
For VB.NET:
|
||
|
|
|
|
I may be missing something, but iterating through a generic list should be fairly simple if you use my examples below. The List<> class implements the IList and IEnumerable interfaces so that you can easily iterate through them basically any way you want. The most efficient way would be to use a for loop:
You may also choose to use a foreach loop:
|
||
|
|
