using System.Collections.Generic;
public static void Main()
var foo = new List<string>() {"apple", "orange", "grape"};
var bar = new List<int>() {1,2,3,4,5};
var result = from food in foo
select food + " = " + val.ToString();
foreach (var r in result)
var result2 = foo.Where(x => x.Length <= 5);
foreach (var r in result2)