Skip to content

Instantly share code, notes, and snippets.

@tnngo2
Created April 6, 2012 08:25
Show Gist options
  • Save tnngo2/2318146 to your computer and use it in GitHub Desktop.
Save tnngo2/2318146 to your computer and use it in GitHub Desktop.
foreach
string[] employeeNames = { "Maria", "Wilson", "Elton", "Garry"};
Console.WriteLine("Employee Names");
foreach (string names in employeeNames)
{
Console.WriteLine(names);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment