Where मेथड विधेय के आधार पर मानों की एक सरणी को फ़िल्टर करता है।
यहाँ, विधेय 70 से ऊपर के तत्वों की जाँच कर रहा है।
Where((n, index) => n >= 70);
उदाहरण
using System;
using System.Linq;
using System.Collections.Generic;
public class Demo {
public static void Main() {
int[] arr = { 10, 30, 20, 15, 90, 85, 40, 75 };
Console.WriteLine("Array:");
foreach (int a in arr)
Console.WriteLine(a);
// getting elements above 70
IEnumerable myQuery = arr.AsQueryable().Where((n, index) => n >= 70);
Console.WriteLine("Elements above 70...:");
foreach (int res in myQuery)
Console.WriteLine(res);
}
} आउटपुट
Array: 10 30 20 15 90 85 40 75 Elements above 70...: 90 85 75