.NET SyncLock order deadlock

779 Views Asked by At

If I have two Synclocks

synclock a
  synclock b
  end synclock
end synclock

am I in danger of a deadlock if I never have

synclock b
  synclock a
  end synclock
end synclock

in my code, but I do synclock on a or b randomly?

1

There are 1 best solutions below

2
On

As long as you always lock a before b then you'll be okay.