What is the difference between locking on a type of a class vs locking on the class itself?
For example:
private readonly object xmpp = new object();
lock (xmpp)
{
...
}
vs
lock (typeof(Xmpp))
{
...
}
|
What is the difference between locking on a type of a class vs locking on the class itself? For example:
vs
|
|||||||||||||||
|
Always lock on a private lock object:
If you must synchronize access to class static members, use the same pattern:
|
|||||||||||||||
|