RosettaCodeData/Task/Conditional-structures/Visual-Basic/conditional-structures-1.vb

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