using System.Collections;
public static void Main()
string[] musicalArtists = { "Adele", "Maroon 5", "Avril Lavigne" };
from artist in musicalArtists
where artist.StartsWith("A")
foreach (var artist in aArtists)
Console.WriteLine(artist);
int [] numbers = { 1, 2,3,4,5,6,7,8,9,10 };
foreach (var number in from number in numbers
Console.WriteLine(number);