Advertisement
Sixem

.NET Reverse String Function

Mar 8th, 2013
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.25 KB | None | 0 0
  1. 'Reversing a string in VB.net
  2. 'Written By Sixem
  3.    Private Function Reverse_String(ByVal sVal_ As String)
  4.         Dim rET_BW() As Char = CStr(sVal_).ToCharArray()
  5.         Array.Reverse(rET_BW)
  6.         Return CStr(New String(rET_BW))
  7.     End Function
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement