Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7941755
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T23:45:48+00:00 2026-06-03T23:45:48+00:00

If I have the following code: List<MyClass> list = GetList(); list.ForEach(i => i.SomeMethod()); and

  • 0

If I have the following code:

List<MyClass> list = GetList();
list.ForEach(i => i.SomeMethod());

and let’s say SomeMethod() throws an exception. Does ForEach continue iterating, or does it just stop right there?

If it does terminate, is there any way to get the rest of the items in the collection to run their methods?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-03T23:45:49+00:00Added an answer on June 3, 2026 at 11:45 pm

    Yes, if an exception is thrown, the loop exits. If you don’t want that behaviour, you should put exception handling into your delegate. You could easily create a wrapper method for this:

    public static Action<T> SuppressExceptions<T>(Action<T> action)
    {
        return item =>
        {
            try
            {
                action(item);
            }
            catch (Exception e)
            {
                // Log it, presumably
            }
        };
    }
    

    To be honest, I would try to avoid this if possible. It’s unpleasant to catch all exceptions like that. It also doesn’t record the items that failed, or the exceptions etc. You really need to think about your requirements in more detail:

    • Do you need to collect the failed items?
    • Do you need to collect the exceptions?
    • Which exceptions do you want to catch?

    It would almost certainly be cleaner to create a separate method which used the normal foreach loop instead, handling errors and collecting errors as it went. Personally I generally prefer using foreach over ForEach – you may wish to read Eric Lippert’s thoughts on this too.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say I have following code: List<string> numbers = new List<string> { 1, 2
I have the following code: List<HtmlMeta> metas = new List<HtmlMeta>(); foreach (Control c in
I have the following C# code: List<string> names = new List<string>(); if (myObject.myClass !=
I have the following piece of HTML code: <div class=myclass id =class1> <ol class=list>
Let's say I have the following code in my configure.zcml file. I want my
I have the following code: List<int> intList = new ArrayList<int>(); for (int index =
I have the following code: List<T> list = new List<T>(); IEnumerable<T> query1 = ...
I have the following C# code: List<int[,]> l1 = new List<int[,]>(); l1[0] = new
I have the following code: SPList list = web.Lists[this.ListName]; SPListItem item = list.Items.Add(); now
I have the following code: public List<IWFResourceInstance> FindStepsByType(IWFResource res) { List<IWFResourceInstance> retval = new

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.