using System;
using System.Linq;
publicclass MainClass {
publicstaticvoid Main() {
string[] greetings = { "hello world", "hello LINQ", "hello" };
var items =
from s in greetings
where s.EndsWith("LINQ")
select s;
foreach (var item in items)
Console.WriteLine(item);
}
}