15 lines
179 B
VB.net
15 lines
179 B
VB.net
|
|
If condition1 Then
|
||
|
|
statement
|
||
|
|
End If
|
||
|
|
|
||
|
|
If condition1 Then
|
||
|
|
statement
|
||
|
|
ElseIf condition2 Then
|
||
|
|
statement
|
||
|
|
...
|
||
|
|
ElseIf conditionN Then
|
||
|
|
statement
|
||
|
|
Else
|
||
|
|
statement
|
||
|
|
End If
|