Skip to content

Instantly share code, notes, and snippets.

@tcsavage
Created March 8, 2012 17:09
Show Gist options
  • Save tcsavage/2002113 to your computer and use it in GitHub Desktop.
Save tcsavage/2002113 to your computer and use it in GitHub Desktop.
enumliststring.cs
string outputString = "";
foreach (var e in enumList)
{
outputString += e.ToString() + ", ";
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment