Computer >> Máy Tính >  >> Lập trình >> C#

Chương trình C # để lọc các phần tử mảng dựa trên một vị từ

Đặt một mảng.

int[] arr = { 40, 42, 12, 83, 75, 40, 95 };

Sử dụng mệnh đề Where và vị ngữ để nhận các phần tử trên 50.

IEnumerable<int> myQuery = arr.AsQueryable() .Where((a, index) => a >= 50);

Hãy cho chúng tôi xem mã hoàn chỉnh -

Ví dụ

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);
      }
   }
}

Đầu ra

Array:
40
42
12
83
75
40
95
Elements above 50...:
83
75
95