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 8140423
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T12:09:42+00:00 2026-06-06T12:09:42+00:00

As far as Thread Safety goes is this ok to do or do I

  • 0

As far as Thread Safety goes is this ok to do or do I need to be using a different collection ?

        List<FileMemberEntity> fileInfo = getList(); 

        Parallel.ForEach(fileInfo, fileMember =>
        {
              //Modify each fileMember 
        }
  • 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-06T12:09:45+00:00Added an answer on June 6, 2026 at 12:09 pm

    As long as you are only modifying the contents of the item that is passed to the method, there is no locking needed.

    (Provided of course that there are no duplicate reference in the list, i.e. two references to the same FileMemberEntity instance.)

    If you need to modify the list itself, create a copy that you can iterate, and use a lock when you modify the list:

    List<FileMemberEntity> fileInfo = getList();
    
    List<FileMemberEntity> copy = new List<FileMemberEntity>(fileInfo);
    object sync = new Object();
    
    Parallel.ForEach(copy, fileMember => {
      // do something
      lock (sync) {
        // here you can add or remove items from the fileInfo list
      }
      // do something
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to create a thread using pthread. So far I have this:
So far I have learned about generating thread dump and heap dump using jstack
I'm using learning the basic of boost.thread. So far, I can create each thread
Coming from Java I'm trying to learn thread safety in Objective-C. So far I've
OK, I read through this thread and it hasn't helped me so far. I
This mailing-list thread states that there is a QuartzFilter class in the Mac OS
So far everytime i use to make a select query using pdo, i used
As far as I know, this isn't caused by an infinite recursion. The program
This may seem a bit odd, but I really need to create a workaround
...the class with the running thread is far away from the closing_event of the

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.