up vote 0 down vote favorite
share [g+] share [fb]

How do i exit a Generic list ForEach with a delegate? Break or return doesn't work.

Example:

        Peoples.ForEach(delegate(People someone)
        {
            if(someone.Name == "foo")
               ???? What to do to exit immediatly ?
        });
link|improve this question

78% accept rate
feedback

4 Answers

up vote 2 down vote accepted

You cannot achieve this with ForEach.

link|improve this answer
feedback

just write it out like this

foreach(People someone in Peoples)
{
    if(someone.Name == "foo") break;
    // rest of code below for != "foo"...
}

to just skip foo and still do the action for everyone else you could do

if(someone.Name == "foo") continue;
link|improve this answer
feedback

You could do something like:

        Peoples.TakeWhile(p=> p.Name != "foo")
            .ToList().ForEach(p => Console.WriteLine(p.Name));

but that's overkill and bad in terms of performance ...

Just use a simple foreach loop.

link|improve this answer
feedback

You can achieve this, but not recommended.

Hint: use exceptions :)

link|improve this answer
Costly though. Exceptions are not part of normal behaviour of a program, the clue is in the name. :) – Mark Dickinson Apr 30 '09 at 10:56
feedback

Your Answer

 
or
required, but never shown

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