Skip to content

Instantly share code, notes, and snippets.

@vdonchev
Created April 22, 2016 15:47
Show Gist options
  • Select an option

  • Save vdonchev/e68938f122f0c526da1be779a6cbc525 to your computer and use it in GitHub Desktop.

Select an option

Save vdonchev/e68938f122f0c526da1be779a6cbc525 to your computer and use it in GitHub Desktop.
var notes = new
{
Value = new
{
Opponents = new List<string>() { "Oppnent 1", "Opponent 2" }
}
};
Console.WriteLine(notes.Value.Opponents.Count != 0
? $"-opponents: {string.Join(", ", notes.Value.Opponents)}"
: "-opponents: (empty)");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment