diff options
author | Jacob Ward <jacobward1898@gmail.com> | 2015-10-31 20:27:51 -0600 |
---|---|---|
committer | Jacob Ward <jacobward1898@gmail.com> | 2015-10-31 20:27:51 -0600 |
commit | 5d09566ee4881028cd53dee83ae27343beb8269d (patch) | |
tree | d5d48488f23e08690f1ec54610c9fe81e34d2fe8 /visualbasic.html.markdown | |
parent | 08b43e21f1a273d5ca471e0accdf46ba706a4cd5 (diff) | |
parent | dbe6184519860e526432c4987a6f67d6c0acf38e (diff) |
Merge remote-tracking branch 'adambard/master'
Diffstat (limited to 'visualbasic.html.markdown')
-rw-r--r-- | visualbasic.html.markdown | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/visualbasic.html.markdown b/visualbasic.html.markdown index bdfdcc10..accdbf56 100644 --- a/visualbasic.html.markdown +++ b/visualbasic.html.markdown @@ -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 |