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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T18:14:21+00:00 2026-05-10T18:14:21+00:00

I’m using C# & .NEt 3.5. What is the difference between the OptionA and

  • 0

I’m using C# & .NEt 3.5. What is the difference between the OptionA and OptionB ?

class MyClass {     private object m_Locker = new object();     private Dicionary<string, object> m_Hash = new Dictionary<string, object>();      public void OptionA()     {         lock(m_Locker){            // Do something with the dictionary         }     }      public void OptionB()     {         lock(m_Hash){            // Do something with the dictionary         }     }        } 

I’m starting to dabble in threading (primarly for creating a cache for a multi-threaded app, NOT using the HttpCache class, since it’s not attached to a web site), and I see the OptionA syntax in a lot of the examples I see online, but I don’t understand what, if any, reason that is done over OptionB.

  • 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. 2026-05-10T18:14:22+00:00Added an answer on May 10, 2026 at 6:14 pm

    Option B uses the object to be protected to create a critical section. In some cases, this more clearly communicates the intent. If used consistently, it guarantees only one critical section for the protected object will be active at a time:

    lock (m_Hash) {     // Across all threads, I can be in one and only one of these two blocks     // Do something with the dictionary } lock (m_Hash) {     // Across all threads, I can be in one and only one of these two blocks     // Do something with the dictionary } 

    Option A is less restrictive. It uses a secondary object to create a critical section for the object to be protected. If multiple secondary objects are used, it’s possible to have more than one critical section for the protected object active at a time.

    private object m_LockerA = new object(); private object m_LockerB = new object();  lock (m_LockerA) {     // It's possible this block is active in one thread     // while the block below is active in another     // Do something with the dictionary } lock (m_LockerB) {     // It's possible this block is active in one thread     // while the block above is active in another     // Do something with the dictionary } 

    Option A is equivalent to Option B if you use only one secondary object. As far as reading code, Option B’s intent is clearer. If you’re protecting more than one object, Option B isn’t really an option.

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

Sidebar

Ask A Question

Stats

  • Questions 118k
  • Answers 118k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer Nothing wrong performance wise but it smells as something that… May 11, 2026 at 11:31 pm
  • Editorial Team
    Editorial Team added an answer A session cookie is just a normal cookie without an… May 11, 2026 at 11:31 pm
  • Editorial Team
    Editorial Team added an answer Nothing. Since the property type is Type, the XAML parser… May 11, 2026 at 11:31 pm

Related Questions

I ran into a problem. Wrote the following code snippet: teksti = teksti.Trim() teksti
I am currently running into a problem where an element is coming back from
Seemingly simple, but I cannot find anything relevant on the web. What is the
Does anyone know how can I replace this 2 symbol below from the string
Configuring TinyMCE to allow for tags, based on a customer requirement. My config is

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

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.