I want to append string in front.
'For example
Dim value As String = "a"
'I want to append the 'value' string so that it prints the below:
' gfedcba
I found the below thread which tells the solution for my problem:
http://www.daniweb.com/forums/thread139781.html
But I was wondering if there is way to achieve the same result using "&" instead of "+" ?
Thanks.