Skip to content

Instantly share code, notes, and snippets.

@alohasoftworks
Created December 7, 2009 21:38
Show Gist options
  • Select an option

  • Save alohasoftworks/251142 to your computer and use it in GitHub Desktop.

Select an option

Save alohasoftworks/251142 to your computer and use it in GitHub Desktop.
List<String> myList = new List<String>();
myList.Add("Hello");
myList.Add("World");
foreach(String x in myList)
{
Console.WriteLine(x);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment