using System;
using System.Collections.Generic;
var myList = new List<string>() {
"Me", "You" , "blah" };
foreach(var item in myList)
{
Console.WriteLine(item);
}