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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T07:18:49+00:00 2026-05-11T07:18:49+00:00

Does c# have its own version of the java synchronized keyword? I.e. in java

  • 0

Does c# have its own version of the java ‘synchronized’ keyword?

I.e. in java it can be specified either to a function, an object or a block of code, like so:

public synchronized void doImportantStuff() {    // dangerous code goes here. } 

or

public void doImportantStuff() {    // trivial stuff     synchronized(someLock) {       // dangerous code goes here.    } } 
  • 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-11T07:18:49+00:00Added an answer on May 11, 2026 at 7:18 am

    First – most classes will never need to be thread-safe. Use YAGNI: only apply thread-safety when you know you actually are going to use it (and test it).

    For the method-level stuff, there is [MethodImpl]:

    [MethodImpl(MethodImplOptions.Synchronized)] public void SomeMethod() {/* code */} 

    This can also be used on accessors (properties and events):

    private int i; public int SomeProperty {     [MethodImpl(MethodImplOptions.Synchronized)]     get { return i; }     [MethodImpl(MethodImplOptions.Synchronized)]     set { i = value; } } 

    Note that field-like events are synchronized by default, while auto-implemented properties are not:

    public int SomeProperty {get;set;} // not synchronized public event EventHandler SomeEvent; // synchronized 

    Personally, I don’t like the implementation of MethodImpl as it locks this or typeof(Foo) – which is against best practice. The preferred option is to use your own locks:

    private readonly object syncLock = new object(); public void SomeMethod() {     lock(syncLock) { /* code */ } } 

    Note that for field-like events, the locking implementation is dependent on the compiler; in older Microsoft compilers it is a lock(this) / lock(Type) – however, in more recent compilers it uses Interlocked updates – so thread-safe without the nasty parts.

    This allows more granular usage, and allows use of Monitor.Wait/Monitor.Pulse etc to communicate between threads.

    A related blog entry (later revisited).

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

Sidebar

Related Questions

How does your employer limit/prevent pirating of its products? Some have the view that
Does anyone have any recommendations of tools that can be of assistance with moving
Does * have a special meaning in Python as it does in C? I
Both are mathematical values, however the float does have more precision. Is that the
Using C# .NET 2.0, I have a composite data class that does have the
Does C# have built-in support for parsing strings of page numbers? By page numbers,
Does anyone have a definitive answer to whether Sql Server Management Objects is compatible
Does anyone have the secret formula to resizing transparent images (mainly GIFs) without ANY
Does anyone have a technique for generating SQL table create (and data insert) commands
Does anyone have a good way to build MSI (vdproj) projects using MsBuild or

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.