Created
July 2, 2012 13:44
-
-
Save pmiossec/3033296 to your computer and use it in GitHub Desktop.
Aggregate string to display as a list
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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