Why is it better to lock(objLock) than lock(this) - Stack Overflow [closed]most recent 30 from stackoverflow.com2009-11-30T10:15:09Zhttp://stackoverflow.com/feeds/question/892535http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/892535/why-is-it-better-to-lockobjlock-than-lockthis6Why is it better to lock(objLock) than lock(this) [closed]miguel2009-05-21T11:47:03Z2009-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#89254212Answer by Winston Smith for Why is it better to lock(objLock) than lock(this)Winston Smith2009-05-21T11:49:21Z2009-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#8926120Answer by Steve Cooper for Why is it better to lock(objLock) than lock(this)Steve Cooper2009-05-21T12:04:50Z2009-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>