21 lines
237 B
VB.net
21 lines
237 B
VB.net
|
|
If condition Then
|
||
|
|
statement
|
||
|
|
End If
|
||
|
|
|
||
|
|
If condition Then
|
||
|
|
statement
|
||
|
|
Else
|
||
|
|
statement
|
||
|
|
End If
|
||
|
|
|
||
|
|
If condition1 Then
|
||
|
|
statement
|
||
|
|
ElseIf condition2 Then
|
||
|
|
statement
|
||
|
|
...
|
||
|
|
ElseIf conditionN Then
|
||
|
|
statement
|
||
|
|
Else
|
||
|
|
statement
|
||
|
|
End If
|