
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Filter Array Elements Based on a Predicate in C#
Set an array.
int[] arr = { 40, 42, 12, 83, 75, 40, 95 };
Use the Where clause and predicate to get elements above 50.
IEnumerable<int> myQuery = arr.AsQueryable() .Where((a, index) => a >= 50);
Let us see the complete code −
Example
using System; using System.Linq; using System.Collections.Generic; public class Demo { public static void Main() { int[] arr = { 40, 42, 12, 83, 75, 40, 95 }; Console.WriteLine("Array:"); foreach (int a in arr) { Console.WriteLine(a); } // getting elements above 70 IEnumerable<int> myQuery = arr.AsQueryable() .Where((a, index) => a >= 50); Console.WriteLine("Elements above 50...:"); foreach (int res in myQuery) { Console.WriteLine(res); } } }
Output
Array: 40 42 12 83 75 40 95 Elements above 50...: 83 75 95
Advertisements