[vb/en] Additional note for select statements

This commit is contained in:
Liam Demafelix 2015-10-31 08:26:09 +08:00
parent f0a4c88acf
commit 93d3ab4578

View File

@ -32,6 +32,9 @@ Module Module1
Console.WriteLine("50. About") Console.WriteLine("50. About")
Console.WriteLine("Please Choose A Number From The Above List") Console.WriteLine("Please Choose A Number From The Above List")
Dim selection As String = Console.ReadLine 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 Select Case selection
Case "1" 'HelloWorld Output Case "1" 'HelloWorld Output
Console.Clear() 'Clears the application and opens the private sub Console.Clear() 'Clears the application and opens the private sub