Skip to content

Instantly share code, notes, and snippets.

@vgashic
Created February 26, 2021 13:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vgashic/c2147e23c6c7a44044e9d7ac03e6b1f4 to your computer and use it in GitHub Desktop.
Save vgashic/c2147e23c6c7a44044e9d7ac03e6b1f4 to your computer and use it in GitHub Desktop.
var names = new List<String>
{
"Ana",
"Felipe",
"Emillia"
};
foreach (var name in names)
{
Console.WriteLine($"Hello {name}");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment