Method to reverse the string
The simple way to reverse a string is as follows..
public String Reverse(String strParam)
{
if (strParam.Length == 1)
return strParam;
else
return Reverse(strParam.Substring(1)) + strParam.Substring(0, 1);
}
Hope this post is helpful for you.
Good work chenthil
Keep it up