0
什麼是VB.NET相當於此代碼什麼是vb.net相當於c#匿名代碼塊?
void foo()
{
...
{ //anonymous code block starts here
...
} //anonymous code block ends here
}
什麼是VB.NET相當於此代碼什麼是vb.net相當於c#匿名代碼塊?
void foo()
{
...
{ //anonymous code block starts here
...
} //anonymous code block ends here
}
沒有在VB.NET等同匿名代碼塊。
您可以用模擬如果屬實:
If True Then
End If
或者,如果你不需要一個塊的範圍,你可以使用區域:
#Region "This is the code to be collapsed"
#End Region
你可以得到最接近的是:
If True Then ' anonymous code block starts here
' ...
End If ' anonymous code block ends here