show/hide this revision's text 2 retag
show/hide this revision's text 1

Why is lock(this) {...} bad?

The MSDN documentation says that

public class SomeObject
{
  public void SomeOperation()
  {
    lock(this)
    {
      //Access instance variables
    }
  }
}

is "is a problem if the instance can be accessed publicly". I'm wondering why? Is it because the lock will be held longer than necessary? Or is there some more insidious reason?

    Post Made Community Wiki by Community