I'm having trouble reversing a string. Me thinks I've stared at this too long.
Private Sub btnReverse_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnReverse.Click
Dim strOrgText As String
Dim strRevText As String
Dim array As Array
strOrgText = Me.txtTheString.Text
array = strOrgText.ToCharArray()
strRevText = array.Reverse 'Here is my problem
strRevText = Me.lblResult.Text
End Sub
Thx