c# lock 使用不当引起的死锁
Contents
Thread Synchronization (C# and Visual Basic)中提到最好不要lock public的东西,比如:
lock(this)
2.lock(“string”)
3.lock(typeof(int))
我在github上放了个死锁的例子。
Thread Synchronization (C# and Visual Basic)中提到最好不要lock public的东西,比如:
lock(this)
lock(“string”)
lock(typeof(int))