vote up 2 vote down star

What is the best way to iterate through a strongly-typed generic List in C#.NET and VB.NET?

flag

7 Answers

vote up 17 vote down check

For C#:

foreach(ObjectType objectItem in ObjectTypeList)
{
    // ...do some stuff
}

Answer for VB.NET from Purple Ant:

For Each objectItem as ObjectType in ObjectTypeList
    'Do some stuff '
Next
link|flag
vote up 2 vote down

It depends on your application:

  • for loop, if efficiency is a priority
  • foreach loop or ForEach method, whichever communicates your intent more clearly
link|flag
vote up 4 vote down

C#

myList<string>().ForEach(
    delegate(string name)
    {
        Console.WriteLine(name);
    });

Anonymous delegates are not currently implemented in VB.Net, but both C# and VB.Net should be able to do lambdas:

C#

myList<string>().ForEach(name => Console.WriteLine(name));

VB.Net

myList(Of String)().ForEach(Function(name) Console.WriteLine(name))


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.

link|flag
Your VB code won't work. VB only supports anonymous functions in this version, you have to wait until VB10 to have anonymous subroutines. – Jonathan Allen Sep 9 '08 at 8:21
You are correct, I didn't test it before posting. No wonder documentation for lambda expressions in VB are so scarce; they aren't nearly as useful. – Adam Lassek Sep 18 '08 at 19:15
vote up 6 vote down

With any generic implementation of IEnumerable the best way is:

//C#
foreach( var item in listVariable) {
    //do stuff
}

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:

//C#
int[] valueTypeArray;
for(int i=0; i < valueTypeArray.Length; ++i) {
     int item = valueTypeArray[i];
     //do stuff
}

Is quicker.

link|flag
vote up 1 vote down

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?

link|flag
vote up 3 vote down

For VB.NET:

For Each tmpObject as ObjectType in ObjectTypeList
    'Do some stuff '
Next

link|flag
vote up 1 vote down

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:

for(int i = 0; i < genericList.Count; ++i) 
{
     // Loop body
}

You may also choose to use a foreach loop:

foreach(<insertTypeHere> o in genericList)
{
    // Loop body
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.