Skip to content

Instantly share code, notes, and snippets.

@pmiossec
Created July 2, 2012 13:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pmiossec/3033296 to your computer and use it in GitHub Desktop.
Save pmiossec/3033296 to your computer and use it in GitHub Desktop.
Aggregate string to display as a list
var strings = new System.Collections.Generic.List<string> { "item 1", "item 2", "item 3" };
var displayStringList = "list : " + System.Environment.NewLine + "- " + strings.Aggregate((s1, s2) => s1 + System.Environment.NewLine + "- " + s2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment