Skip to content

Instantly share code, notes, and snippets.

@ebruning
Created January 18, 2012 00:06
Show Gist options
  • Save ebruning/1629919 to your computer and use it in GitHub Desktop.
Save ebruning/1629919 to your computer and use it in GitHub Desktop.
combine an array
private readonly List<string> authors = new List<string>
{
"Cameron MacFarland",
"Mike Minutillo",
"Jake Ginnivan",
"Ian Randall",
"Paul Stovell",
"Andrew Tobin",
"Brendan Forster",
"Paul Jenkins"
};
public string Authors
{
get { return string.Join(", ", authors); }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment