show/hide this revision's text 2 Added clarification

In C# there are a number of caveats, e.g.

Never lock on a value type - the lock keyword prevents you from doing this, but if you call Monitor.Enter() directly, you'll be locking on a boxed instance of the value. Fortunately when you try to call Monitor.Exit() on a boxed value, you'll get an exception.

Never lock on a literal string. In C# literal strings are interned for the entire application. Thus local strings, strings in different AppDomains etc. are all shared. This could lead to weird deadlock issues.

Be very careful with finalizers and try to avoid them if possible. One problem: an unhandled exception in a finalizer will take down the entire process.

    Post Made Community Wiki by Community
show/hide this revision's text 1

In C# there are a number of caveats, e.g.

Never lock on a value type - the lock keyword prevents you from doing this, but if you call Monitor.Enter() directly, you'll be locking on a boxed instance of the value.

Never lock on a literal string. In C# literal strings are interned for the entire application. Thus local strings, strings in different AppDomains etc. are all shared. This could lead to weird deadlock issues.

Be very careful with finalizers and try to avoid them if possible. One problem: an unhandled exception in a finalizer will take down the entire process.