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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T07:33:43+00:00 2026-06-04T07:33:43+00:00

In my C# program, I have got method code: Object model; int score; for()

  • 0

In my C# program, I have got method code:

Object model;
int score;
for()
{
    int tempScore=0;
    Object tempModel=getModel();
    //some interesting stuff modifying value of tempScore
    if(tempScore>score)
    {
        score=tempScore;
        model=tempModel;
    }
}

I would like to use Parallel for insted of normal, but I’m afraid that i will encounter some synchronization issues. I know that I can use lock(model), but what can I do about simple type score?
model and score are method local variables, therefore they are shared between threads.

  • 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-04T07:33:44+00:00Added an answer on June 4, 2026 at 7:33 am

    If you use lock (model), it doesn’t mean that other threads won’t be able to access model. What it means is that two threads won’t be able to execute a section protected by lock (model) at the same time. Because of this, you could use something like lock (model) to protect access to score too.

    But that wouldn’t work in this case. lock doesn’t lock on a variable, it locks on an object and you modify which object model refers to in the loop. Because of that, I thin the best option here is to create another object and lock on that:

    object model;
    int score;
    object modelLock = new object();
    
    Parallel.For(…, (…) =>
    {
        int tempScore=0;
        Object tempModel=getModel();
        //some interesting stuff modifying value of tempScore
        lock (modelLock)
        {
            if(tempScore > score)
            {
                score=tempScore;
                model=tempModel;
            }
        }
    });
    

    If you find out that this is too slow for your needs (because using lock does have some overhead, which might be significant for you), you should consider using something like Thread.VolatileRead() or Interlocked.CompareExchange(). But be very careful with them, because it’s very easy to make your code subtly wrong.

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

Sidebar

Related Questions

I'm working on a vbscript program and I have got and Expected Statement Error.
I've got a table recording views of programs. Each program can have two different
I've got a program where a lot of classes have really complicated configuration requirements.
In my program, I've got a bunch of classes that will only ever have
In an embedded program I have a screen object that needs to manage a
I've got a method that does some IO that generally looks like this: public
I have defined an int[][] object. Because it is an object, if i send
I've got some library code that works on a range of .NET runtimes (regular,
I have got the following code in a file called test.java which is located
I've got one program which creates 3 worker programs. The preferable method of communication

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.