Char[] arrStr; string strInput = "Naveen"; string strOutput= string.Empty;
arrStr = strInput.ToCharArray();
for(int idx=arrStr.Length-1;idx>=0; idx--) { strOutput += arrStr.Getvalue(idx); }
Login to post response