using following code you can able to reverse string easily without using loop
private string Reverse(string strValue) { char[] chArray = strValue.ToCharArray(); Array.Reverse(chArray); return new string(chArray); }