Guest User

Untitled

a guest
Jul 16th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. string s = "abcdefg";
  2. string lst = s.ToCharArray().Aggregate<char,string>("", ( f, l ) => f.Insert(0,l.ToString()) );
  3. Console.WriteLine(lst);
Add Comment
Please, Sign In to add comment