Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C#

ค้นหาองค์ประกอบเฉพาะใน C# List


ตั้งรายการ −

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

สมมติว่าคุณต้องหาองค์ประกอบที่หารด้วย 2 ลงตัว ให้ใช้วิธีการ Find() -

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

นี่คือรหัสที่สมบูรณ์ -

ตัวอย่าง

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

ผลลัพธ์

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