我无法绕过我在其他人写的旧项目中找到的代码。我不是VB人。没有很多运气用Google搜索这种语法。任何人都可以向我解释,特别是True : bool = false
位吗?
If drpdnTeam.Text = "" Then lblTeam.Visible = True : bool = False Else lblTeam.Visible = False
答案 0 :(得分:2)
:
是一个语句分隔符。所以编写这段代码的另一种方法是:
If drpdnTeam.Text = "" Then
lblTeam.Visible = True
bool = False
Else
lblTeam.Visible = False
End If
bool
可能只是一个变量(或属性),并为其分配了值False
。