Not that I would want to use this practically (for many reasons) but out of strict curiousity I would like to know if there is a way to reverse order a string using LINQ and/or
string str="a and b"; string t=""; char[] schar = str.Reverse().ToArray(); foreach (char c in schar ) { test += c.ToString(); }