vote up 0 vote down star

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 ?
        });
flag

4 Answers

vote up 1 vote down check

You cannot achieve this with ForEach.

link|flag
vote up 0 vote down

You can achieve this, but not recommended.

Hint: use exceptions :)

link|flag
Costly though. Exceptions are not part of normal behaviour of a program, the clue is in the name. :) – Mark Dickinson Apr 30 at 10:56
vote up 0 vote down

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|flag
vote up 1 vote down

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|flag

Your Answer

Get an OpenID
or

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