这行VB代码有什么作用?

时间:2017-01-16 17:52:05

标签: vb.net

我无法绕过我在其他人写的旧项目中找到的代码。我不是VB人。没有很多运气用Google搜索这种语法。任何人都可以向我解释,特别是True : bool = false位吗?

 If drpdnTeam.Text = "" Then lblTeam.Visible = True : bool = False Else lblTeam.Visible = False

1 个答案:

答案 0 :(得分:2)

:是一个语句分隔符。所以编写这段代码的另一种方法是:

If drpdnTeam.Text = "" Then 
    lblTeam.Visible = True
    bool = False
Else
    lblTeam.Visible = False
End If

bool可能只是一个变量(或属性),并为其分配了值False