Created
January 18, 2012 00:06
-
-
Save ebruning/1629919 to your computer and use it in GitHub Desktop.
combine an array
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
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