Language Integrated Query (LINQ)
تسمح لك LINQ بالاستعلام عن المجموعات (مثل القوائم أو المصفوفات) بطريقة تشبه لغة SQL.
مثال:
csharp using System.Linq;
int[] scores = { 90, 71, 82, 93, 75, 82 };
// صيغة الاستعلام (Query syntax) var highScores = from s in scores where s > 80 select s;
// صيغة الميثود (Method syntax - أكثر شيوعاً) var highScores2 = scores.Where(s => s > 80);