7

有没有办法在 VB.net 中使用 Select Case 语句作为开始?还是我必须使用很长的 elseif?例子:

If text.StartsWith("/go") then
elseif test.StartsWith("/stop")
elseif test.StartsWith("/continue")
End If

但取而代之的是:

Select Case text
Case text.StartsWith("/go")
Case text.StartsWith("/stop")
Case text.StartsWith("/continue")
Case Else
End Select
End Sub
4

2 回答 2

11

你可以做类似的事情

Select Case True
    Case text.StartsWith("/go")
        ...
    Case text.StartsWith("/stop")
        ...
    Case Else
End Select
于 2010-09-22T19:40:00.280 回答
4
Select Case True
 Case text.startswith("/go") :  messagebox.show("Go")
 Case text.startswith("/stop") :   messagebox.show("stop")
 Case text.startswith("/continue") :   messagebox.show("continue")
End Select
于 2010-09-22T19:38:25.703 回答