Why is it better to lock(objLock) than lock(this) - Stack Overflow [closed] most recent 30 from stackoverflow.com 2009-11-30T10:15:09Z http://stackoverflow.com/feeds/question/892535 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/892535/why-is-it-better-to-lockobjlock-than-lockthis 6 Why is it better to lock(objLock) than lock(this) [closed] miguel 2009-05-21T11:47:03Z 2009-05-21T12:21:42Z <blockquote> <p><strong>Possible Duplicates:</strong><br /> <a href="http://stackoverflow.com/questions/251391/why-is-lockthis-bad">Why is lock(this) {...} bad?</a> </p> </blockquote> <p><hr /></p> <p>In C# it is common to use lock(objLock) where objLock is an object created simply for the purpose of locking.</p> <p>Why is this preferable to lock(this)? What are the negative implications of lock(this) other than taking a lock out on the class itself?</p> http://stackoverflow.com/questions/892535/why-is-it-better-to-lockobjlock-than-lockthis/892542#892542 12 Answer by Winston Smith for Why is it better to lock(objLock) than lock(this) Winston Smith 2009-05-21T11:49:21Z 2009-05-21T11:57:31Z <p>Because something else could lock the instance, then you'd have a deadlock.</p> <p>If you lock on the object you've created specifically for that purpose, you know you're in complete control, and nothing else is going to lock on it unexpectedly.</p> http://stackoverflow.com/questions/892535/why-is-it-better-to-lockobjlock-than-lockthis/892612#892612 0 Answer by Steve Cooper for Why is it better to lock(objLock) than lock(this) Steve Cooper 2009-05-21T12:04:50Z 2009-05-21T12:04:50Z <p>If you lock anything public, then both the class and some other class can try to get a lock. It's easy enough to create a sync object, and always preferrable;</p> <pre><code>private syncLock = new Object(); </code></pre>