show/hide this revision's text 4 deleted 237 characters in body

Possible Duplicates:
Why is lock(this) {...} bad?
Why is the PyObjC documentation so bad?

Duplicate:

Why is lock(this) {…} bad?


In C# it is common to use lock(objLock) where objLock is an object created simply for the purpose of locking.

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?

show/hide this revision's text 3 insert duplicate link

Possible Duplicates:
Why is lock(this) {...} bad?
Why is the PyObjC documentation so bad?

Duplicate:

Why is lock(this) {…} bad?


In C# it is common to use lock(objLock) where objLock is an object created simply for the purpose of locking.

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?

    Post Closed as "exact duplicate" by Shog9, Lasse V. Karlsen, Lars Truijens, Marc Gravell

show/hide this revision's text 2 added 119 characters in body
show/hide this revision's text 1