where1 C# Linq - Enumerable.Where() Enumerable.Where(IEnumerable, Func) 메서드 public static System.Collections.Generic.IEnumerable Where(this System.Collections.Generic.IEnumerable source,Func predicate); 매개변수 source IEnumerable 필터링할 IEnumerable predicate Func 각 요소를 조건에 대해 테스트하는 함수 특정 조건으로 필터링해서 해당 조건에 부합하는 요소들만 취합하고 싶을 때 사용한다. 예제 코드 List fruits = new List { "apple", "passionfruit", "banana", "mango", "orange", "blueberry", "grape",.. 2024. 2. 15. 이전 1 다음