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
Variant with recursive lambda:
var value = "reverse me"; Func f = null; f = s => s.Length == 1 ? s : f(s.Substring(1)) + s[0]; var reverseValue = f(value);
LP, Dejan