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

C# 모든 방법

<시간/>

All 메서드는 컬렉션의 모든 값을 확인하고 부울을 반환합니다. 요소 중 하나가 설정 조건을 만족하지 않더라도 All() 메서드는 False를 반환합니다.

예를 들어 보겠습니다 -

int[] arr = {10, 15, 20};

이제 All() 메서드를 사용하여 위 배열의 각 요소가 5보다 큰지 여부를 확인합니다.

arr.AsQueryable().All(val => val > 5);

예시

using System;
using System.Linq;
class Demo {
   static void Main() {
      int[] arr = {10, 15, 20};
      // checking if all the array elements are greater than 5
      bool res = arr.AsQueryable().All(val => val > 5);
      Console.WriteLine(res);
   }
}

출력

True