Computer >> 컴퓨터 >  >> 프로그램 작성 >> C#

목록에 C#의 지정된 조건과 일치하는 요소가 포함되어 있는지 확인하는 방법은 무엇입니까?

<시간/>

List에 C#의 지정된 조건과 일치하는 요소가 포함되어 있는지 확인하려면 코드는 다음과 같습니다. -

예시

using System;
using System.Collections.Generic;
public class Demo {
   private static bool demo(int i) {
      return ((i % 3) == 0);
   }
   public static void Main(String[] args) {
      List<int> list = new List<int>();
      list.Add(255);
      list.Add(315);
      list.Add(410);
      list.Add(500);
      list.Add(600);
      list.Add(710);
      list.Add(800);
      list.Add(1000);
      Console.WriteLine("List elements...");
      foreach (int i in list) {
         Console.WriteLine(i);
      }
      Console.WriteLine("Does some elements match the predicate = "+list.Exists(demo));
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

List elements...
255
315
410
500
600
710
800
1000
Does some elements match the predicate = True

이제 다른 예를 살펴보겠습니다 -

예시

using System;
using System.Collections.Generic;
public class Demo {
   private static bool demo(int i) {
      return ((i % 7) == 0);
   }
   public static void Main(String[] args) {
      List<int> list = new List<int>();
      list.Add(255);
      list.Add(310);
      list.Add(410);
      list.Add(500);
      list.Add(600);
      Console.WriteLine("List elements...");
      foreach (int i in list) {
         Console.WriteLine(i);
      }
      Console.WriteLine("Does some elements match the predicate = "+list.Exists(demo));
   }
}

출력

이것은 다음과 같은 출력을 생성합니다 -

List elements...
255
310
410
500
600
Does some elements match the predicate = False