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

Tìm một phần tử cụ thể trong Danh sách C #

Đặt danh sách -

List<int> myList = new List<int>() {
   5,
   10,
   17,
   19,
   23,
   33
};

Giả sử bạn cần tìm một phần tử chia hết cho 2. Để làm điều đó, hãy sử dụng phương thức Find () -

int val = myList.Find(item => item % 2 == 0);

Đây là mã hoàn chỉnh -

Ví dụ

using System;
using System.Collections.Generic;
using System.Linq;
class Demo {
   static void Main() {
      List<int> myList = new List<int>() {
         5,
         10,
         17,
         19,
         23,
         33
      };
      Console.WriteLine("List: ");
      foreach(int i in myList) {
         Console.WriteLine(i);
      }
      int val = myList.Find(item => item % 2 == 0);
      Console.WriteLine("Element that divides by zero: "+val);
   }
}

Đầu ra

List:
5
10
17
19
23
33
Element that divides by zero: 10