1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-03-16 04:10:01 +01:00

Merge pull request #1920 from definitelyliam/patch-2

[vb/en] Additional note for select statements
This commit is contained in:
Adam Bard 2015-10-31 18:25:32 +08:00
commit 7c3c8aea41

View File

@ -32,6 +32,9 @@ Module Module1
Console.WriteLine("50. About")
Console.WriteLine("Please Choose A Number From The Above List")
Dim selection As String = Console.ReadLine
' The "Case" in the Select statement is optional.
' For example, "Select selection" instead of "Select Case selection"
' will also work.
Select Case selection
Case "1" 'HelloWorld Output
Console.Clear() 'Clears the application and opens the private sub