using System;
using System.Linq;
using System.Collections.Generic;
public class Program
{
public static void Main()
// int türündeki veri setimiz
int[] scores = new int[] { 97,89,85,98, 92, 81, 60 };
// 80 üzerindeki değerleri bulacak sorgumuz.
IEnumerable<int> scoreQuery =
from score in scores
where score > 80
select score;
// Sorgunun çalıştırılması.
foreach (int i in scoreQuery)
Console.Write(i + " ");
}