Advertisement
Guest User

Untitled

a guest
Aug 25th, 2019
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. public string GetSequence()
  2. {
  3. string sequence = "[ ";
  4. sequence += this.ListSequence.Aggregate(
  5. new StringBuilder(),
  6. (current, next) => current.Append(current.Length == 0 ? "" : " ").Append(next)).ToString();
  7. sequence += " ]";
  8.  
  9. return sequence;
  10. }
  11. // Produces [ 1 1 2 3 5 8 13 ]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement