C# VB.NET 中是否有 lock 语句?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/915850/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-08-06 03:07:19  来源:igfitidea点击:

Is there a lock statement in VB.NET?

c#vb.net

提问by iburlakov

Does VB.NET have the equivalent of C#'s lockstatement?

VB.NET 是否具有等效于 C# 的lock语句?

采纳答案by Jon Skeet

Yes, the SyncLockstatement.

是的,SyncLock语句。

For example:

例如:

// C#
lock (someLock)
{
    list.Add(someItem);
}

// VB
SyncLock someLock
    list.Add(someItem)
End SyncLock

回答by Chris Dunaway

Yes, it's called SyncLock

是的,它叫做 SyncLock

回答by CSharpAtl

It is called SyncLock example:

它被称为 SyncLock 示例:

Sub IncrementWebCount()
    SyncLock objMyLock
        intWebHits += 1
        Console.WriteLine(intWebHits)
    End SyncLock
End Sub