Quote Originally Posted by Dawgy Dawg View Post
Reverse a String – Enter a string and the program will reverse it and print it out.
Isn't that:
Code:
Dim Rev As String = "MyString"
Rev.Reverse()

'Print Options
'1 - Console
Console.WriteLine(Rev)
'2 - MessageBox
MessageBox.Show(Rev)
Or am I wrong ?
(I know, ages since I coded VB.Net)