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

21 lines
237 B
VB.net
Raw Permalink Normal View History

2018-06-22 20:57:24 +00:00
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