最佳答案
我想知道这个结构是否会导致错误:
lock(sync)
{
// something
lock(sync)
{
//something
lock(sync)
{
//something
}
}
}
我已经运行了这段代码,它看起来很好,但是在某些情况下可能会抛出错误?